diff options
author | Michael Meeks <michael.meeks@suse.com> | 2011-11-07 14:04:58 +0000 |
---|---|---|
committer | Michael Meeks <michael.meeks@suse.com> | 2011-11-07 14:19:35 +0000 |
commit | 14f6de30ce3896704f06aa4259e6a0a2cc0895a8 (patch) | |
tree | b8fa3ef8ad6f92836bec2fccfdff64cb31c858b9 /vcl | |
parent | 6de32a1afc947e71754f4266d5c167eccbc8f78b (diff) |
gtk3: add run-time check for gtk >= 3.2.0
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/unx/gtk/app/gtkinst.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/unx/gtk/app/gtkinst.cxx b/vcl/unx/gtk/app/gtkinst.cxx index 8068b22c2050..4178b7e3f261 100644 --- a/vcl/unx/gtk/app/gtkinst.cxx +++ b/vcl/unx/gtk/app/gtkinst.cxx @@ -153,7 +153,7 @@ extern "C" XInitThreads(); #if GTK_CHECK_VERSION(3,0,0) - const gchar* pVersion = gtk_check_version( 3, 0, 0 ); + const gchar* pVersion = gtk_check_version( 3, 2, 0 ); #else const gchar* pVersion = gtk_check_version( 2, 2, 0 ); #endif |