summaryrefslogtreecommitdiffstats
path: root/generic/tkTreeRowLabel.c
diff options
context:
space:
mode:
authortreectrl <treectrl>2006-10-05 22:44:56 (GMT)
committertreectrl <treectrl>2006-10-05 22:44:56 (GMT)
commitd280d35555e085bb7362d63fd779ffecfdbe8ffb (patch)
tree7bc2cd3fe4b30548e471c705c079617d97a9edec /generic/tkTreeRowLabel.c
parent92c7fb9ca286bf816aeab73efa58f0ea4fdd39ab (diff)
downloadtktreectrl-d280d35555e085bb7362d63fd779ffecfdbe8ffb.zip
tktreectrl-d280d35555e085bb7362d63fd779ffecfdbe8ffb.tar.gz
tktreectrl-d280d35555e085bb7362d63fd779ffecfdbe8ffb.tar.bz2
Changed TagInfo_xxx to accept a TreeCtrl arg.
Diffstat (limited to 'generic/tkTreeRowLabel.c')
-rw-r--r--generic/tkTreeRowLabel.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/generic/tkTreeRowLabel.c b/generic/tkTreeRowLabel.c
index 74df736..c18ca87 100644
--- a/generic/tkTreeRowLabel.c
+++ b/generic/tkTreeRowLabel.c
@@ -5,7 +5,7 @@
*
* Copyright (c) 2002-2006 Tim Baker
*
- * RCS: @(#) $Id: tkTreeRowLabel.c,v 1.1 2006/10/04 03:52:23 treectrl Exp $
+ * RCS: @(#) $Id: tkTreeRowLabel.c,v 1.2 2006/10/05 22:44:56 treectrl Exp $
*/
#include "tkTreeCtrl.h"
@@ -2011,7 +2011,7 @@ RowTagCmd(
}
ROW_FOR_EACH(_row, &rows, &iter) {
row = (RowLabel *) _row;
- row->tagInfo = TagInfo_Add(row->tagInfo, tags, numTags);
+ row->tagInfo = TagInfo_Add(tree, row->tagInfo, tags, numTags);
}
STATIC_FREE(tags, Tk_Uid, numTags);
break;
@@ -2064,7 +2064,7 @@ RowTagCmd(
}
ROW_FOR_EACH(_row, &rows, &iter) {
row = (RowLabel *) _row;
- tags = TagInfo_Names(row->tagInfo, tags, &numTags, &tagSpace);
+ tags = TagInfo_Names(tree, row->tagInfo, tags, &numTags, &tagSpace);
}
if (numTags) {
listObj = Tcl_NewListObj(0, NULL);
@@ -2103,7 +2103,7 @@ RowTagCmd(
}
ROW_FOR_EACH(_row, &rows, &iter) {
row = (RowLabel *) _row;
- row->tagInfo = TagInfo_Remove(row->tagInfo, tags, numTags);
+ row->tagInfo = TagInfo_Remove(tree, row->tagInfo, tags, numTags);
}
STATIC_FREE(tags, Tk_Uid, numTags);
break;