]> git.saurik.com Git - wxWidgets.git/commitdiff
update version check for glib 2.32
authorPaul Cornett <paulcor@bullseye.com>
Sun, 17 Jun 2012 17:08:35 +0000 (17:08 +0000)
committerPaul Cornett <paulcor@bullseye.com>
Sun, 17 Jun 2012 17:08:35 +0000 (17:08 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@71791 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/gtk/utilsgtk.cpp

index bfe8e9c0764655a86fcfe55b1af13375c73cacb9..275e2c9f10e8121a9b0773f1a877b164dc5d183a 100644 (file)
@@ -458,11 +458,11 @@ wxGUIAppTraits::GetStandardCmdLineOptions(wxArrayString& names,
     {
         // since GTK>=2.6, we can use the glib_check_version() symbol...
 
-        // check whether GLib version is greater than 2.6 but also lower than 2.31
+        // check whether GLib version is greater than 2.6 but also lower than 2.33
         // because, as we use the undocumented _GOptionGroup struct, we don't want
-        // to run this code with future versions which might change it (2.30 is the
+        // to run this code with future versions which might change it (2.32 is the
         // latest one at the time of this writing)
-        if (glib_check_version(2,6,0) == NULL && glib_check_version(2,31,0))
+        if (glib_check_version(2,6,0) == NULL && glib_check_version(2,33,0))
         {
             usage << _("The following standard GTK+ options are also supported:\n");