]> git.saurik.com Git - wxWidgets.git/commitdiff
return name and extension by const ref, not by value, to prevent bugs as the one...
authorVadim Zeitlin <vadim@wxwidgets.org>
Tue, 8 Mar 2005 20:16:44 +0000 (20:16 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Tue, 8 Mar 2005 20:16:44 +0000 (20:16 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32683 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/msw/gdiimage.h

index 97d81bbd9f4dd6d1ea289651e9412a48773cd368..a58afe00fc74d783baa06d90c11a33dc38009406 100644 (file)
@@ -102,8 +102,8 @@ public:
     void SetExtension(const wxString& ext) { m_extension = ext; }
     void SetType(long type) { m_type = type; }
 
     void SetExtension(const wxString& ext) { m_extension = ext; }
     void SetType(long type) { m_type = type; }
 
-    wxString GetName() const { return m_name; }
-    wxString GetExtension() const { return m_extension; }
+    const wxString& GetName() const { return m_name; }
+    const wxString& GetExtension() const { return m_extension; }
     long GetType() const { return m_type; }
 
     // real handler operations: to implement in derived classes
     long GetType() const { return m_type; }
 
     // real handler operations: to implement in derived classes