1
0
mirror of https://github.com/gryf/wmaker.git synced 2026-02-07 16:55:51 +01:00

Remove #ifdef SYS_SIGLIST_DECLARED constructs

SYS_SIGLIST_DECLARED was defined nowhere and it was
clearly some dead code.
This commit is contained in:
Carlos R. Mafra
2009-10-17 01:05:28 +02:00
parent 1f1eb393f8
commit 96b9b22cb2
2 changed files with 0 additions and 32 deletions

View File

@@ -1954,11 +1954,7 @@ int wShowCrashingDialogPanel(int whatSig)
WMResizeWidget(panel->noteL, PWIDTH - 20, 40);
WMMoveWidget(panel->noteL, 10, 90);
WMSetLabelTextAlignment(panel->noteL, WAJustified);
#ifdef SYS_SIGLIST_DECLARED
snprintf(buf, sizeof(buf), _("Window Maker received signal %i\n(%s)."), whatSig, sys_siglist[whatSig]);
#else
snprintf(buf, sizeof(buf), _("Window Maker received signal %i."), whatSig);
#endif
WMSetLabelText(panel->noteL, buf);
panel->note2L = WMCreateLabel(panel->win);