]> git.saurik.com Git - wxWidgets.git/commitdiff
Don't call ClearAll() before LoadFile() in the stc sample.
authorVadim Zeitlin <vadim@wxwidgets.org>
Sun, 30 Sep 2012 22:26:58 +0000 (22:26 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sun, 30 Sep 2012 22:26:58 +0000 (22:26 +0000)
There is no need to clear the control contents before loading a file into it
because LoadFile() is supposed to do this on its own (although currently it
doesn't, which will be fixed soon).

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

samples/stc/edit.cpp

index ed4c804711f78969a2d49201fe79ebb320457c37..17e373792793a05962f454b31a273ac916169519 100644 (file)
@@ -533,18 +533,6 @@ bool Edit::LoadFile (const wxString &filename) {
 
     // load file in edit and clear undo
     if (!filename.empty()) m_filename = filename;
-//     wxFile file (m_filename);
-//     if (!file.IsOpened()) return false;
-    ClearAll ();
-//     long lng = file.Length ();
-//     if (lng > 0) {
-//         wxString buf;
-//         wxChar *buff = buf.GetWriteBuf (lng);
-//         file.Read (buff, lng);
-//         buf.UngetWriteBuf ();
-//         InsertText (0, buf);
-//     }
-//     file.Close();
 
     wxStyledTextCtrl::LoadFile(m_filename);