[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

[vidalia-svn] r1919: Default to the "Cleanlooks" style on non-Mac platforms when (trunk/src/config)



Author: edmanm
Date: 2007-09-08 22:17:10 -0400 (Sat, 08 Sep 2007)
New Revision: 1919

Modified:
   trunk/src/config/vidaliasettings.cpp
Log:
Default to the "Cleanlooks" style on non-Mac platforms when built with Qt >= 4.3.


Modified: trunk/src/config/vidaliasettings.cpp
===================================================================
--- trunk/src/config/vidaliasettings.cpp	2007-09-07 03:59:54 UTC (rev 1918)
+++ trunk/src/config/vidaliasettings.cpp	2007-09-09 02:17:10 UTC (rev 1919)
@@ -45,9 +45,13 @@
 
 /* Default Vidalia Settings */
 #if defined(Q_WS_MAC)
-#define DEFAULT_STYLE               "macintosh (aqua)"
+#  define DEFAULT_STYLE       "macintosh (aqua)"
 #else
-#define DEFAULT_STYLE               "plastique"
+#  if QT_VERSION >= 0x040300
+#    define DEFAULT_STYLE     "cleanlooks"
+#  else
+#    define DEFAULT_STYLE     "plastique"
+#  endif
 #endif
 
 #if defined(Q_OS_WIN32)