]> git.saurik.com Git - wxWidgets.git/commitdiff
Move wxGetLibraryVersionInfo() to core from base.
authorVadim Zeitlin <vadim@wxwidgets.org>
Thu, 30 Dec 2010 22:37:03 +0000 (22:37 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Thu, 30 Dec 2010 22:37:03 +0000 (22:37 +0000)
This function uses the GUI toolkit information and so can't be defined in
wxBase. The code only compiled before because the function was erroneously
defined in wxCore even though it was declared as WXDLLIMPEXP_BASE.

Fix this by declaring it with WXDLLIMPEXP_CORE too. This corrects problems in
MSW DLL build.

If we need to get a string containing user-readable wxBase version too, we
should add another function (as it's not possible to virtualize this one) but
such function doesn't seem incredibly useful to have anyhow.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@66493 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/utils.h
interface/wx/utils.h

index ce6951c2dbc7d03be295561d1c449620ffe90983..0906fa834c95fdad275ad0380337635ac4d4abcd 100644 (file)
@@ -141,7 +141,7 @@ WXDLLIMPEXP_BASE void wxBell();
 WXDLLIMPEXP_CORE void wxInfoMessageBox(wxWindow* parent);
 #endif // wxUSE_MSGDLG
 
-WXDLLIMPEXP_BASE wxVersionInfo wxGetLibraryVersionInfo();
+WXDLLIMPEXP_CORE wxVersionInfo wxGetLibraryVersionInfo();
 
 // Get OS description as a user-readable string
 WXDLLIMPEXP_BASE wxString wxGetOsDescription();
index b0f11b9f8b1b3c6585260686877a035acc186740..8d25909600e1b8fb1fe8fcb991f46b900c45caec 100644 (file)
@@ -150,12 +150,18 @@ void wxBell();
 */
 void wxInfoMessageBox(wxWindow* parent);
 
+//@}
+
+/** @addtogroup group_funcmacro_version */
+//@{
+
 /**
     Get wxWidgets version information.
 
     @since 2.9.2
     @see wxVersionInfo
     @header{wx/utils.h}
+    @library{wxcore}
 */
 wxVersionInfo wxGetLibraryVersionInfo();