summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--ChangeLog.pre-2-104
-rw-r--r--ChangeLog.pre-2-24
-rw-r--r--ChangeLog.pre-2-44
-rw-r--r--ChangeLog.pre-2-64
-rw-r--r--ChangeLog.pre-2-84
-rw-r--r--gdk/win32/gdkwindow-win32.c2
7 files changed, 25 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 2a610dc386..0a88dd6163 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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):
diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10
index 2a610dc386..0a88dd6163 100644
--- a/ChangeLog.pre-2-10
+++ b/ChangeLog.pre-2-10
@@ -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):
diff --git a/ChangeLog.pre-2-2 b/ChangeLog.pre-2-2
index 2a610dc386..0a88dd6163 100644
--- a/ChangeLog.pre-2-2
+++ b/ChangeLog.pre-2-2
@@ -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):
diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4
index 2a610dc386..0a88dd6163 100644
--- a/ChangeLog.pre-2-4
+++ b/ChangeLog.pre-2-4
@@ -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):
diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6
index 2a610dc386..0a88dd6163 100644
--- a/ChangeLog.pre-2-6
+++ b/ChangeLog.pre-2-6
@@ -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):
diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8
index 2a610dc386..0a88dd6163 100644
--- a/ChangeLog.pre-2-8
+++ b/ChangeLog.pre-2-8
@@ -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):
diff --git a/gdk/win32/gdkwindow-win32.c b/gdk/win32/gdkwindow-win32.c
index ad1a5caca1..bdb952d019 100644
--- a/gdk/win32/gdkwindow-win32.c
+++ b/gdk/win32/gdkwindow-win32.c
@@ -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