summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Timofeev <timofeev.i.s@gmail.com>2012-11-11 16:36:14 +0400
committerIvan Timofeev <timofeev.i.s@gmail.com>2012-11-11 16:36:14 +0400
commit1e3e415dbe877666e1575128a7ec3d5d9c076ffa (patch)
tree6d8216700a3ed5865bc51a871cb3d66f29a6c3d7
parent0292fbde1763e4a406be15b1771780a6a0c9aa47 (diff)
Related: fdo#56198 avoid gtk warning, take 2
from http://developer.gnome.org/gtk/2.24/GtkSettings.html The "gtk-primary-button-warps-slider" property ... Since: 2.24 but it is 2.24.13 indeed: https://mail.gnome.org/archives/ftp-release-list/2012-September/msg00195.html News ==== * Implement a gtk-primary-button-warps-slider setting that lets us adjust scale and scrollbar behaviour according to platform. Change-Id: I4d3170801973e3e6101736971de58d70b673fd58
-rw-r--r--vcl/unx/gtk/gdi/salnativewidgets-gtk.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/unx/gtk/gdi/salnativewidgets-gtk.cxx b/vcl/unx/gtk/gdi/salnativewidgets-gtk.cxx
index da3c181768e3..4455c2bd71cf 100644
--- a/vcl/unx/gtk/gdi/salnativewidgets-gtk.cxx
+++ b/vcl/unx/gtk/gdi/salnativewidgets-gtk.cxx
@@ -3990,7 +3990,7 @@ void GtkSalGraphics::updateSettings( AllSettings& rSettings )
gboolean showmenuicons = true, primarybuttonwarps = false;
g_object_get( pSettings,
"gtk-menu-images", &showmenuicons,
-#if GTK_CHECK_VERSION(2,24,0)
+#if GTK_CHECK_VERSION(2,24,13)
"gtk-primary-button-warps-slider", &primarybuttonwarps,
#endif
(char *)NULL );