]> git.saurik.com Git - wxWidgets.git/commitdiff
More efficient access to name and value
authorJulian Smart <julian@anthemion.co.uk>
Wed, 6 Oct 2010 13:15:24 +0000 (13:15 +0000)
committerJulian Smart <julian@anthemion.co.uk>
Wed, 6 Oct 2010 13:15:24 +0000 (13:15 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@65778 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/xml/xml.h

index 02936478c2bea940a2c9e2686c9298b8201243d5..95fa3cfb2cf509c52070ee26e2ea3bb772b313f6 100644 (file)
@@ -69,8 +69,8 @@ public:
             : m_name(name), m_value(value), m_next(next) {}
     virtual ~wxXmlAttribute() {}
 
-    wxString GetName() const { return m_name; }
-    wxString GetValue() const { return m_value; }
+    const wxString& GetName() const { return m_name; }
+    const wxString& GetValue() const { return m_value; }
     wxXmlAttribute *GetNext() const { return m_next; }
 
     void SetName(const wxString& name) { m_name = name; }