From f7635f3d3d29fdebbe37e4a0225ee15ebc1043ec Mon Sep 17 00:00:00 2001 From: Uwe Bonnes Date: Thu, 13 Jun 2002 19:11:21 +0000 Subject: [PATCH] Display the name of the started process in the desktop title. --- dlls/x11drv/desktop.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/x11drv/desktop.c b/dlls/x11drv/desktop.c index 385d6c8d1bc..1c07fdacc98 100644 --- a/dlls/x11drv/desktop.c +++ b/dlls/x11drv/desktop.c @@ -113,7 +113,7 @@ Window X11DRV_create_desktop( XVisualInfo *desktop_vi, const char *geometry ) { int x = 0, y = 0, flags; unsigned int width = 640, height = 480; /* Default size = 640x480 */ - char *name = "Wine desktop"; + char *name = GetCommandLineA(); XSizeHints *size_hints; XWMHints *wm_hints; XClassHint *class_hints;