From 12fffeb456c60f25d18027789b4e7ae04a619060 Mon Sep 17 00:00:00 2001 From: Paul Cornett Date: Mon, 7 Oct 2013 16:50:22 +0000 Subject: [PATCH] update GLib version check git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74966 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/gtk/utilsgtk.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/gtk/utilsgtk.cpp b/src/gtk/utilsgtk.cpp index 384344934f..34a16108a3 100644 --- a/src/gtk/utilsgtk.cpp +++ b/src/gtk/utilsgtk.cpp @@ -418,11 +418,11 @@ wxGUIAppTraits::GetStandardCmdLineOptions(wxArrayString& names, { wxString usage; - // check whether GLib version is greater than 2.6 but also lower than 2.33 + // check whether GLib version is lower than 2.39 // because, as we use the undocumented _GOptionGroup struct, we don't want - // to run this code with future versions which might change it (2.32 is the + // to run this code with future versions which might change it (2.38 is the // latest one at the time of this writing) - if (glib_check_version(2,33,0)) + if (glib_check_version(2,39,0)) { usage << _("The following standard GTK+ options are also supported:\n");