return version of GTK+ library the app links against, not the one it was compiled with

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@26032 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík
2004-03-02 23:36:07 +00:00
parent cf83f7c617
commit a5441ce3a5
2 changed files with 4 additions and 4 deletions

View File

@@ -141,8 +141,8 @@ wxToolkitInfo& wxGUIAppTraits::GetToolkitInfo()
info.shortName << _T("univ");
info.name << _T("/wxUniversal");
#endif
info.versionMajor = GTK_MAJOR_VERSION;
info.versionMinor = GTK_MINOR_VERSION;
info.versionMajor = gtk_major_version;
info.versionMinor = gtk_minor_version;
info.os = wxGTK;
return info;
}