]> Pileus Git - ~andy/gtk/commitdiff
Make "ms-windows" the default theme on Win32.
authorMatthias Clasen <maclas@gmx.de>
Wed, 1 Sep 2004 03:41:35 +0000 (03:41 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Wed, 1 Sep 2004 03:41:35 +0000 (03:41 +0000)
Tue Aug 31 23:40:29 2004  Matthias Clasen  <maclas@gmx.de>

* gdk/win32/gdkproperty-win32.c (gdk_screen_get_setting): Make
"ms-windows" the default theme on Win32.

ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-6
ChangeLog.pre-2-8
gdk/win32/gdkproperty-win32.c

index 363c1c96f849dd9daaa2a4f3e72efd50e73a0629..ea1ad784619e6d41e1c72fee34cc90d29449313f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Tue Aug 31 23:40:29 2004  Matthias Clasen  <maclas@gmx.de>
+
+       * gdk/win32/gdkproperty-win32.c (gdk_screen_get_setting): Make
+       "ms-windows" the default theme on Win32.  
+
 Tue Aug 31 23:24:49 2004  Matthias Clasen  <maclas@gmx.de>
 
        * gtk/gtkcalendar.c (gtk_calendar_main_button): Only start  
index 363c1c96f849dd9daaa2a4f3e72efd50e73a0629..ea1ad784619e6d41e1c72fee34cc90d29449313f 100644 (file)
@@ -1,3 +1,8 @@
+Tue Aug 31 23:40:29 2004  Matthias Clasen  <maclas@gmx.de>
+
+       * gdk/win32/gdkproperty-win32.c (gdk_screen_get_setting): Make
+       "ms-windows" the default theme on Win32.  
+
 Tue Aug 31 23:24:49 2004  Matthias Clasen  <maclas@gmx.de>
 
        * gtk/gtkcalendar.c (gtk_calendar_main_button): Only start  
index 363c1c96f849dd9daaa2a4f3e72efd50e73a0629..ea1ad784619e6d41e1c72fee34cc90d29449313f 100644 (file)
@@ -1,3 +1,8 @@
+Tue Aug 31 23:40:29 2004  Matthias Clasen  <maclas@gmx.de>
+
+       * gdk/win32/gdkproperty-win32.c (gdk_screen_get_setting): Make
+       "ms-windows" the default theme on Win32.  
+
 Tue Aug 31 23:24:49 2004  Matthias Clasen  <maclas@gmx.de>
 
        * gtk/gtkcalendar.c (gtk_calendar_main_button): Only start  
index 363c1c96f849dd9daaa2a4f3e72efd50e73a0629..ea1ad784619e6d41e1c72fee34cc90d29449313f 100644 (file)
@@ -1,3 +1,8 @@
+Tue Aug 31 23:40:29 2004  Matthias Clasen  <maclas@gmx.de>
+
+       * gdk/win32/gdkproperty-win32.c (gdk_screen_get_setting): Make
+       "ms-windows" the default theme on Win32.  
+
 Tue Aug 31 23:24:49 2004  Matthias Clasen  <maclas@gmx.de>
 
        * gtk/gtkcalendar.c (gtk_calendar_main_button): Only start  
index 5131b62d409b5e87921a9cffa4c0d6560a3f6068..fc42812c352cf4fb3c6ea917989fa6f538c5d977 100644 (file)
@@ -547,7 +547,11 @@ gdk_screen_get_setting (GdkScreen   *screen,
    * XXX : if these values get changed through the Windoze UI the
    *       respective gdk_events are not generated yet.
    */
-  if (strcmp ("gtk-double-click-time", name) == 0)
+  if (strcmp ("gtk-theme-name", name) == 0) 
+    {
+      g_value_set_string (value, "ms-windows");
+    }
+  else if (strcmp ("gtk-double-click-time", name) == 0)
     {
       gint i = GetDoubleClickTime ();
       GDK_NOTE(MISC, g_print("gdk_screen_get_setting(\"%s\") : %d\n", name, i));