Untabify.

2008-09-10  Tor Lillqvist  <tml@novell.com>

	* app/gui/gui-unique.c: Untabify.


svn path=/trunk/; revision=26918
This commit is contained in:
Tor Lillqvist 2008-09-10 20:01:45 +00:00 committed by Tor Lillqvist
parent 0fb8352667
commit 2a01f97b6e
2 changed files with 9 additions and 7 deletions

View File

@ -1,5 +1,7 @@
2008-09-10 Tor Lillqvist <tml@novell.com>
* app/gui/gui-unique.c: Untabify.
* app/gui/gui-unique.c (gui_unique_win32_exit): Destroy the proxy
window here so that gimp_unique_win32_open() in app/unique.c won't
find it. This is important especially in a developer version where

View File

@ -134,7 +134,7 @@ typedef struct
static IdleOpenData *
idle_open_data_new (const gchar *name,
gint len,
gboolean as_new)
gboolean as_new)
{
IdleOpenData *data = g_slice_new0 (IdleOpenData);
@ -177,9 +177,9 @@ gui_unique_win32_idle_open (IdleOpenData *data)
static LRESULT CALLBACK
gui_unique_win32_message_handler (HWND hWnd,
UINT uMsg,
WPARAM wParam,
LPARAM lParam)
UINT uMsg,
WPARAM wParam,
LPARAM lParam)
{
switch (uMsg)
{
@ -233,9 +233,9 @@ gui_unique_win32_init (Gimp *gimp)
RegisterClassW (&wc);
proxy_window = CreateWindowExW (0,
GIMP_UNIQUE_WIN32_WINDOW_CLASS,
GIMP_UNIQUE_WIN32_WINDOW_NAME,
WS_POPUP, 0, 0, 1, 1, NULL, NULL, wc.hInstance, NULL);
GIMP_UNIQUE_WIN32_WINDOW_CLASS,
GIMP_UNIQUE_WIN32_WINDOW_NAME,
WS_POPUP, 0, 0, 1, 1, NULL, NULL, wc.hInstance, NULL);
}
static void