]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/buffer.h
Split up the context menu functionality to make it easier to customise.
[wxWidgets.git] / include / wx / buffer.h
index 4c5c27eede9c6d9447b5d833644a9b5ee52e31c0..254605edf72ebbd70d8a75288281d605fe232b50 100644 (file)
@@ -260,7 +260,7 @@ public:
         {
             if ( len == wxNO_LEN )
                 len = wxStrlen(str);
-            this->m_data = new Data(StrCopy(str, len), len);
+            this->m_data = new Data(this->StrCopy(str, len), len);
         }
         else
         {
@@ -295,7 +295,7 @@ public:
 
     wxCharTypeBuffer(const wxScopedCharTypeBuffer<T>& src)
     {
-        MakeOwnedCopyOf(src);
+        this->MakeOwnedCopyOf(src);
     }
 
     wxCharTypeBuffer& operator=(const wxScopedCharTypeBuffer<T>& src)