X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/33d28952b29818b6931d91984a7b612a072d843d..63da7df70114ff2c535d6cdeec5d0aca83ce97f3:/include/wx/paper.h

diff --git a/include/wx/paper.h b/include/wx/paper.h
index 1d9a7bb750..f81b155079 100644
--- a/include/wx/paper.h
+++ b/include/wx/paper.h
@@ -19,6 +19,7 @@
 #include "wx/defs.h"
 #include "wx/event.h"
 #include "wx/cmndata.h"
+#include "wx/intl.h"
 
 /*
  * Paper type: see defs.h for wxPaperSize enum.
@@ -40,7 +41,7 @@ public:
     // platformId is a platform-specific id, such as in Windows, DMPAPER_...
     wxPrintPaperType(wxPaperSize paperId, int platformId, const wxString& name, int w, int h);
 
-    inline const wxString& GetName() const { return m_paperName; }
+    inline wxString GetName() const { return wxGetTranslation(m_paperName); }
     inline wxPaperSize GetId() const { return m_paperId; }
     inline int GetPlatformId() const { return m_platformId; }