+bool wxTextDocument::OnCreate(const wxString& path, long flags)
+{
+ if ( !wxDocument::OnCreate(path, flags) )
+ return false;
+
+ // subscribe to changes in the text control to update the document state
+ // when it's modified
+ GetTextCtrl()->Connect
+ (
+ wxEVT_COMMAND_TEXT_UPDATED,
+ wxCommandEventHandler(wxTextDocument::OnTextChange),
+ NULL,
+ this
+ );
+
+ return true;
+}
+