]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/wxchar.h
wxRadioBox fixed on mac
[wxWidgets.git] / include / wx / wxchar.h
index 2bd6a651141d3a983fa48a4fe4dfe61247ee09fb..31658ced47b91106052c29e4461befce004df85f 100644 (file)
@@ -511,11 +511,11 @@ typedef unsigned __WCHAR_TYPE__ wxUChar;
 #endif
 
 // checks whether the passed in pointer is NULL and if the string is empty
-WXDLLEXPORT inline bool wxIsEmpty(const wxChar *p) { return !p || !*p; }
+inline bool wxIsEmpty(const wxChar *p) { return !p || !*p; }
 
 #ifndef wxNEED_WX_STRING_H
 // safe version of strlen() (returns 0 if passed NULL pointer)
-WXDLLEXPORT inline size_t wxStrlen(const wxChar *psz)
+inline size_t wxStrlen(const wxChar *psz)
    { return psz ? wxStrlen_(psz) : 0; }
 #endif