git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@61046
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
return true;
}
-
+
// Since text windows have their own method for saving to/loading from files,
// we override DoSave/OpenDocument instead of Save/LoadObject
bool wxTextDocument::DoSaveDocument(const wxString& filename)
bool wxTextDocument::DoOpenDocument(const wxString& filename)
{
- return GetTextCtrl()->LoadFile(filename);
+ if ( !GetTextCtrl()->LoadFile(filename) )
+ return false;
+
+ // we're not modified by the user yet
+ Modify(false);
+
+ return true;
}
bool wxTextDocument::IsModified() const