diff src/toolbar.c @ 276:6330739388db r21-0b36

Import from CVS: tag r21-0b36
author cvs
date Mon, 13 Aug 2007 10:30:37 +0200
parents c5d627a313b1
children 7df0dd720c89
line wrap: on
line diff
--- a/src/toolbar.c	Mon Aug 13 10:29:43 2007 +0200
+++ b/src/toolbar.c	Mon Aug 13 10:30:37 2007 +0200
@@ -1733,6 +1733,10 @@
 #ifdef HAVE_X_WINDOWS
   fb = Fcons (Fcons (list1 (Qx), make_int (DEFAULT_TOOLBAR_HEIGHT)), fb);
 #endif
+#ifdef HAVE_MS_WINDOWS
+  fb = Fcons (Fcons (list1 (Qmswindows), 
+		     make_int (MSWINDOWS_DEFAULT_TOOLBAR_HEIGHT)), fb);
+#endif
   if (!NILP (fb))
     set_specifier_fallback (Vdefault_toolbar_height, fb);
 
@@ -1743,6 +1747,10 @@
 #ifdef HAVE_X_WINDOWS
   fb = Fcons (Fcons (list1 (Qx), make_int (DEFAULT_TOOLBAR_WIDTH)), fb);
 #endif
+#ifdef HAVE_MS_WINDOWS
+  fb = Fcons (Fcons (list1 (Qmswindows), 
+		     make_int (MSWINDOWS_DEFAULT_TOOLBAR_WIDTH)), fb);
+#endif
   if (!NILP (fb))
     set_specifier_fallback (Vdefault_toolbar_width, fb);
 
@@ -1854,6 +1862,9 @@
 #ifdef HAVE_X_WINDOWS
   fb = Fcons (Fcons (list1 (Qx), make_int (DEFAULT_TOOLBAR_BORDER_WIDTH)), fb);
 #endif
+#ifdef HAVE_MS_WINDOWS
+  fb = Fcons (Fcons (list1 (Qmswindows), make_int (MSWINDOWS_DEFAULT_TOOLBAR_BORDER_WIDTH)), fb);
+#endif
   if (!NILP (fb))
     set_specifier_fallback (Vdefault_toolbar_border_width, fb);