1
0
mirror of https://github.com/gryf/wmaker.git synced 2025-12-21 13:28:05 +01:00

- fixed uncompilable tree.

- wrong parameter passed in some tabview function.
This commit is contained in:
dan
2000-11-09 21:22:47 +00:00
parent 336e2c3678
commit b0dbbb3536
2 changed files with 2 additions and 2 deletions

View File

@@ -164,7 +164,7 @@ WMAddTabViewItemWithView(WMTabView *tPtr, WMView *view, int identifier,
item = WMCreateTabViewItemWithIdentifier(identifier);
WMSetTabViewItemView(item, view);
WMAddItemInTabView(tPtr, item);
WMSetTabViewItemLabel(tPtr, label);
WMSetTabViewItemLabel(item, label);
return item;
}

View File

@@ -1609,7 +1609,7 @@ handleKeyPress(XEvent *event)
int i;
/* find index of this screen */
for (i = 0; < wScreenCount; i++) {
for (i = 0; i < wScreenCount; i++) {
if (wScreenWithNumber(i) == scr)
break;
}