wmmemload: Remove unused variable.
Avoid the following compiler warning: dockapp.c: In function ‘dockapp_open_window’: dockapp.c:51:16: warning: variable ‘stat’ set but not used [-Wunused-but-set-variable] Status stat; ^
This commit is contained in:
parent
1604579aef
commit
580fb497e3
|
@ -48,7 +48,6 @@ dockapp_open_window(char *display_specified, char *appname,
|
||||||
{
|
{
|
||||||
XClassHint *classhint;
|
XClassHint *classhint;
|
||||||
XWMHints *wmhints;
|
XWMHints *wmhints;
|
||||||
Status stat;
|
|
||||||
XTextProperty title;
|
XTextProperty title;
|
||||||
XSizeHints sizehints;
|
XSizeHints sizehints;
|
||||||
Window root;
|
Window root;
|
||||||
|
@ -131,7 +130,7 @@ dockapp_open_window(char *display_specified, char *appname,
|
||||||
XSetWMNormalHints(display, icon_window, &sizehints);
|
XSetWMNormalHints(display, icon_window, &sizehints);
|
||||||
|
|
||||||
/* Set WindowTitle for AfterStep Wharf */
|
/* Set WindowTitle for AfterStep Wharf */
|
||||||
stat = XStringListToTextProperty(&appname, 1, &title);
|
XStringListToTextProperty(&appname, 1, &title);
|
||||||
XSetWMName(display, window, &title);
|
XSetWMName(display, window, &title);
|
||||||
XSetWMName(display, icon_window, &title);
|
XSetWMName(display, icon_window, &title);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue