]> git.saurik.com Git - wxWidgets.git/commitdiff
Only do Armel Asselin's memory reduction patch in Paste in the Unicode
authorRobin Dunn <robin@alldunn.com>
Sat, 29 Jul 2006 01:53:18 +0000 (01:53 +0000)
committerRobin Dunn <robin@alldunn.com>
Sat, 29 Jul 2006 01:53:18 +0000 (01:53 +0000)
build because in the ansi build wxWX2MBbuf is just a char* pointing
into the text wxString's buffer

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@40358 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

contrib/src/stc/ScintillaWX.cpp
src/stc/ScintillaWX.cpp

index 764048fbc2ef05e6af89c98e3e73cbe9021e57cb..93893a4541d6286bff729a6db39928c81631295a 100644 (file)
@@ -483,11 +483,14 @@ void ScintillaWX::Paste() {
     if (gotData) {
         wxString   text = wxTextBuffer::Translate(data.GetText(),
                                                   wxConvertEOLMode(pdoc->eolMode));
-  data.SetText(wxEmptyString); // free the data object content
         wxWX2MBbuf buf = (wxWX2MBbuf)wx2stc(text);
-  text = wxEmptyString; // free text
 
-        int        len = strlen(buf);
+#if wxUSE_UNICODE
+        // free up the old character buffer in case the text is real big
+        data.SetText(wxEmptyString); 
+        text = wxEmptyString;
+#endif
+        int len = strlen(buf);
         pdoc->InsertString(currentPos, buf, len);
         SetEmptySelection(currentPos + len);
     }
index 764048fbc2ef05e6af89c98e3e73cbe9021e57cb..93893a4541d6286bff729a6db39928c81631295a 100644 (file)
@@ -483,11 +483,14 @@ void ScintillaWX::Paste() {
     if (gotData) {
         wxString   text = wxTextBuffer::Translate(data.GetText(),
                                                   wxConvertEOLMode(pdoc->eolMode));
-  data.SetText(wxEmptyString); // free the data object content
         wxWX2MBbuf buf = (wxWX2MBbuf)wx2stc(text);
-  text = wxEmptyString; // free text
 
-        int        len = strlen(buf);
+#if wxUSE_UNICODE
+        // free up the old character buffer in case the text is real big
+        data.SetText(wxEmptyString); 
+        text = wxEmptyString;
+#endif
+        int len = strlen(buf);
         pdoc->InsertString(currentPos, buf, len);
         SetEmptySelection(currentPos + len);
     }