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

Small bug fix, and updated for some #defines that were removed.

This commit is contained in:
dan
1999-04-30 02:36:33 +00:00
parent 8f68cfd8cd
commit 99e67c8ed0
4 changed files with 12 additions and 12 deletions

View File

@@ -158,9 +158,9 @@ createPanel(Panel *p)
WMMoveWidget(panel->sizeF, 20, 10);
WMSetFrameTitle(panel->sizeF, _("Size Display"));
WMSetBalloonTextForView(WMWidgetView(panel->posiF),
_("The position or style of the window size\n"
"display that's shown when a window is resized."));
WMSetBalloonTextForView(_("The position or style of the window size\n"
"display that's shown when a window is resized."),
WMWidgetView(panel->posiF));
panel->sizeP = WMCreatePopUpButton(panel->sizeF);
WMResizeWidget(panel->sizeP, 180, 20);
@@ -178,9 +178,9 @@ createPanel(Panel *p)
WMMoveWidget(panel->posiF, 20, 75);
WMSetFrameTitle(panel->posiF, _("Position Display"));
WMSetBalloonTextForView(WMWidgetView(panel->posiF),
_("The position or style of the window position\n"
"display that's shown when a window is moved."));
WMSetBalloonTextForView(_("The position or style of the window position\n"
"display that's shown when a window is moved."),
WMWidgetView(panel->posiF));
panel->posiP = WMCreatePopUpButton(panel->posiF);
WMResizeWidget(panel->posiP, 180, 20);