server

Eric Pouech eric.pouech at wanadoo.fr
Fri May 10 16:08:28 CDT 2002


this patch adds the missing wineconsole notification when the title of
the console is changed
thanks to Jason Edmeades for spotting it

A+
-------------- next part --------------
Name:          wc_srvr
ChangeLog:     fixed missing wineconsole notification of title modification
License:       X11
GenDate:       2002/05/10 20:21:57 UTC
ModifiedFiles: server/console.c
AddedFiles:    
===================================================================
RCS file: /home/cvs/cvsroot/wine/wine/server/console.c,v
retrieving revision 1.36
diff -u -u -r1.36 console.c
--- server/console.c	26 Apr 2002 19:05:17 -0000	1.36
+++ server/console.c	2 May 2002 19:01:04 -0000
@@ -532,6 +532,8 @@
             new_title[len / sizeof(WCHAR)] = 0;
             if (console->title) free( console->title );
             console->title = new_title;
+	    evt.event = CONSOLE_RENDERER_TITLE_EVENT;
+	    console_input_events_append( console->evt, &evt );
         }
     }
     if (req->mask & SET_CONSOLE_INPUT_INFO_HISTORY_MODE)


More information about the wine-patches mailing list