From: Ryan Norton Date: Wed, 6 Apr 2005 11:09:23 +0000 (+0000) Subject: Get rid of inline for methods not implemented in the header - some compilers choke... X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/19ab5b3a6a1e95a4e89ee0625cb54a387a214184 Get rid of inline for methods not implemented in the header - some compilers choke on it git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33382 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/valtext.h b/include/wx/valtext.h index 0a047e199a..43879105ad 100644 --- a/include/wx/valtext.h +++ b/include/wx/valtext.h @@ -66,10 +66,10 @@ public: #if WXWIN_COMPATIBILITY_2_4 wxDEPRECATED( void SetIncludeList(const wxStringList& list) ); - wxDEPRECATED( inline wxStringList& GetIncludeList() ); + wxDEPRECATED( wxStringList& GetIncludeList() ); wxDEPRECATED( void SetExcludeList(const wxStringList& list) ); - wxDEPRECATED( inline wxStringList& GetExcludeList() ); + wxDEPRECATED( wxStringList& GetExcludeList() ); wxDEPRECATED( bool IsInCharIncludeList(const wxString& val) ); wxDEPRECATED( bool IsNotInCharExcludeList(const wxString& val) );