]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/string.h
wxGetWorkingDirectory() deprecated. Fixed #1338966.
[wxWidgets.git] / include / wx / string.h
index 844cfa9f81f63e00095c258870b27585f5623ac0..4cd3a70575c28813eb4084011c523c1d17095cde 100644 (file)
@@ -958,10 +958,16 @@ public:
 #if defined wxLongLong_t && !defined wxLongLongIsLong
       // insert a long long if they exist and aren't longs
   wxString& operator<<(wxLongLong_t ll)
-    { return (*this) << Format(_T("%") wxLongLongFmtSpec _T("d"), ll); }
+    {
+      const wxChar *fmt = _T("%") wxLongLongFmtSpec _T("d");
+      return (*this) << Format(fmt, ll);
+    }
       // insert an unsigned long long
   wxString& operator<<(wxULongLong_t ull)
-    { return (*this) << Format(_T("%") wxLongLongFmtSpec _T("u"), ull); }
+    {
+      const wxChar *fmt = _T("%") wxLongLongFmtSpec _T("u");
+      return (*this) << Format(fmt , ull);
+    }
 #endif
       // insert a float into string
   wxString& operator<<(float f)