projects
/
dana
/
openbox.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
35c3e99
)
use the member var _tree
author
Dana Jansens
<danakj@orodu.net>
Mon, 30 Dec 2002 07:33:56 +0000
(07:33 +0000)
committer
Dana Jansens
<danakj@orodu.net>
Mon, 30 Dec 2002 07:33:56 +0000
(07:33 +0000)
src/bindings.cc
patch
|
blob
|
history
diff --git
a/src/bindings.cc
b/src/bindings.cc
index f007624e07af4833cc5b0d55e056c291ef36e82e..4517f29d89b7f3bcc7b9b0b659dfef410b659639 100644
(file)
--- a/
src/bindings.cc
+++ b/
src/bindings.cc
@@
-153,12
+153,12
@@
void OBBindings::assimilate(BindingTree *node)
{
BindingTree *a, *b, *tmp, *last;
- if (!
parent->
first_child) {
+ if (!
_tree.
first_child) {
// there are no nodes at this level yet
-
parent->
first_child = node;
+
_tree.
first_child = node;
return;
} else {
- a =
parent->
first_child;
+ a =
_tree.
first_child;
last = a;
b = node;
while (a->first_child) {