]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/stc/edit.cpp
Fix return value of wxGenericTreeCtrl::FindItem().
[wxWidgets.git] / 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);