ContinueAcc = cfgfile->GetNextGroup(AccountName, itemindex);
}
-
+
+ DialogResult = true;
this->Close();
}
void frmEditAccount::CloseWindow( wxCommandEvent& event )
{
+ DialogResult = false;
this->Close();
}
+
+bool frmEditAccount::GetDialogResult(){
+
+ return DialogResult;
+
+}
\ No newline at end of file
frmEditAccount( wxWindow* parent );
void LoadPointers( wxFileConfig* cfgin );
void LoadSettings( wxString AccNameIn );
+ bool GetDialogResult();
private:
wxFileConfig *cfgfile;
wxString AccName;
+ bool DialogResult = false;
//// end generated class members
};