]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/intl.h
added #if USE_WXCONFIG check (TODO: add configure switch for it)
[wxWidgets.git] / include / wx / intl.h
index d0bea59c9fba7f7217cfb3b6b116c5525aad3c0d..b0089447ac2192864c1b4abfee0ad184582aaad4 100644 (file)
@@ -109,6 +109,17 @@ private:
   wxMsgCatalog  *m_pMsgCat;       // pointer to linked list of catalogs
 };
 
+// ----------------------------------------------------------------------------
+// inline functions
+// ----------------------------------------------------------------------------
+
+// get the translation of the string in the current locale  
+inline const char *wxGetTranslation(const char *sz)
+{
+  wxLocale *pLoc = wxGetLocale();
+  return pLoc == NULL ? sz : pLoc->GetString(sz);
+}
+
 // ============================================================================
 // optional features
 // ============================================================================
@@ -144,16 +155,5 @@ private:
 
 #define TRANSSTRING_DEFINED
   
-// ----------------------------------------------------------------------------
-// inline functions
-// ----------------------------------------------------------------------------
-
-// get the translation of the string in the current locale  
-inline const char *wxGetTranslation(const char *sz)
-{
-  wxLocale *pLoc = wxGetLocale();
-  return pLoc == NULL ? sz : pLoc->GetString(sz);
-}
-
 #endif
        // __INTLH__