\r
Date Dev Ver Change details\r
---------- --- ------ --------------\r
+2009-07-19 GL 1.10.1 Fix schedule and step dialogs [Ashesh Vashi, Guillaume\r
+ Lelarge].\r
2009-07-07 GL 1.10.1 Fix macros writing, per report from Mauro Bertoli.\r
2009-07-07 DP 1.12.0 Cache datatypes in dlgTable, so they don't have to be\r
reloaded by dlgColumn, which may be used multiple times\r
int dlgSchedule::Go(bool modal)
{
- int returncode;
-
if (schedule)
{
// edit mode
// create mode
}
- returncode = dlgProperty::Go(modal);
-
- SetSqlReadOnly(true);
-
- return returncode;
+ return dlgProperty::Go(modal);
}
int dlgStep::Go(bool modal)
{
- int returncode;
-
hasConnStrSupport = connection->TableHasColumn(wxT("pgagent"), wxT("pga_jobstep"), wxT("jstconnstr"));
cbDatabase->Append(wxT(" "));
cbDatabase->SetSelection(0);
rbLocalConn->Enable(false);
}
- returncode = dlgProperty::Go(modal);
-
- SetSqlReadOnly(true);
-
- return returncode;
+ return dlgProperty::Go(modal);
}