Use HWND_NOTOPMOST instead of HWND_TOPMOST. Suggested by Florent Duguet.

2002-09-05  Tor Lillqvist  <tml@iki.fi>

	* gdk/win32/gdkwindow-win32.c (gdk_window_set_transient_for):
	Use HWND_NOTOPMOST instead of HWND_TOPMOST. Suggested by Florent
	Duguet.
This commit is contained in:
Tor Lillqvist 2002-09-04 21:45:38 +00:00 committed by Tor Lillqvist
parent 234acfd024
commit 41590bea09
7 changed files with 25 additions and 1 deletions

View File

@ -5,6 +5,10 @@
through the text looking to insert CR in front of each LF. Bug
noticed and fix provided by Florent Duguet.
* gdk/win32/gdkwindow-win32.c (gdk_window_set_transient_for):
Use HWND_NOTOPMOST instead of HWND_TOPMOST. Suggested by Florent
Duguet.
2002-09-04 Matthias Clasen <maclas@gmx.de>
* demos/testanimation.c (do_image):

View File

@ -5,6 +5,10 @@
through the text looking to insert CR in front of each LF. Bug
noticed and fix provided by Florent Duguet.
* gdk/win32/gdkwindow-win32.c (gdk_window_set_transient_for):
Use HWND_NOTOPMOST instead of HWND_TOPMOST. Suggested by Florent
Duguet.
2002-09-04 Matthias Clasen <maclas@gmx.de>
* demos/testanimation.c (do_image):

View File

@ -5,6 +5,10 @@
through the text looking to insert CR in front of each LF. Bug
noticed and fix provided by Florent Duguet.
* gdk/win32/gdkwindow-win32.c (gdk_window_set_transient_for):
Use HWND_NOTOPMOST instead of HWND_TOPMOST. Suggested by Florent
Duguet.
2002-09-04 Matthias Clasen <maclas@gmx.de>
* demos/testanimation.c (do_image):

View File

@ -5,6 +5,10 @@
through the text looking to insert CR in front of each LF. Bug
noticed and fix provided by Florent Duguet.
* gdk/win32/gdkwindow-win32.c (gdk_window_set_transient_for):
Use HWND_NOTOPMOST instead of HWND_TOPMOST. Suggested by Florent
Duguet.
2002-09-04 Matthias Clasen <maclas@gmx.de>
* demos/testanimation.c (do_image):

View File

@ -5,6 +5,10 @@
through the text looking to insert CR in front of each LF. Bug
noticed and fix provided by Florent Duguet.
* gdk/win32/gdkwindow-win32.c (gdk_window_set_transient_for):
Use HWND_NOTOPMOST instead of HWND_TOPMOST. Suggested by Florent
Duguet.
2002-09-04 Matthias Clasen <maclas@gmx.de>
* demos/testanimation.c (do_image):

View File

@ -5,6 +5,10 @@
through the text looking to insert CR in front of each LF. Bug
noticed and fix provided by Florent Duguet.
* gdk/win32/gdkwindow-win32.c (gdk_window_set_transient_for):
Use HWND_NOTOPMOST instead of HWND_TOPMOST. Suggested by Florent
Duguet.
2002-09-04 Matthias Clasen <maclas@gmx.de>
* demos/testanimation.c (do_image):

View File

@ -1525,7 +1525,7 @@ gdk_window_set_transient_for (GdkWindow *window,
if (!SetParent (window_id, parent_id))
WIN32_API_FAILED ("SetParent");
#else /* make the modal window topmost instead */
if (!SetWindowPos (window_id, HWND_TOPMOST, 0, 0, 0, 0,
if (!SetWindowPos (window_id, HWND_NOTOPMOST, 0, 0, 0, 0,
SWP_NOMOVE | SWP_NOSIZE))
WIN32_API_FAILED ("SetWindowPos");
#endif