]> git.saurik.com Git - wxWidgets.git/commitdiff
move virtual GetPath() implementation out of line to work around an apparent Fedora...
authorVadim Zeitlin <vadim@wxwidgets.org>
Fri, 15 May 2009 18:02:41 +0000 (18:02 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Fri, 15 May 2009 18:02:41 +0000 (18:02 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@60643 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/fileconf.h
src/common/fileconf.cpp

index c86af998c27e250f615c38ffc467145592ea9ecd..c3dfb5d772c4650c0e8dbeef4caff7d580e2480f 100644 (file)
@@ -153,7 +153,7 @@ public:
 
   // implement inherited pure virtual functions
   virtual void SetPath(const wxString& strPath);
-  virtual const wxString& GetPath() const { return m_strPath; }
+  virtual const wxString& GetPath() const;
 
   virtual bool GetFirstGroup(wxString& str, long& lIndex) const;
   virtual bool GetNextGroup (wxString& str, long& lIndex) const;
index e3b61cf806258d78fdef0c163f0b6a6e77a711b1..af20d3535840c5104db7fc6474f07b6c298a506f 100644 (file)
@@ -746,6 +746,11 @@ void wxFileConfig::SetPath(const wxString& strPath)
     DoSetPath(strPath, true /* create missing path components */);
 }
 
+const wxString& wxFileConfig::GetPath() const
+{
+    return m_strPath;
+}
+
 // ----------------------------------------------------------------------------
 // enumeration
 // ----------------------------------------------------------------------------