Mercurial > ecos
diff host/tools/configtool/standalone/wxwin/mainwin.cpp @ 613:f83ca6359915
* configtool/standalone/wxwin/admindlg.cpp,
configtool/standalone/wxwin/configtooldoc.cpp,
configtool/standalone/wxwin/configtool.cpp,
configtool/standalone/wxwin/mainwin.cpp,
configtool/standalone/wxwin/appsettings.cpp:
Look for all persistent application settings under
"HKEY_CURRENT_USER\Software\eCos Configuration Tool\"
for consistency.
* configtool/standalone/wxwin/appsettings.cpp:
Board 'reset type' is determined at run-time and no longer persistent.
* configtool/standalone/wxwin/configtooldoc.cpp:
Determine board reset type by looking for "cyg_test_is_simulator=1"
rather than just "cyg_test_is_simulator" since "cyg_test_simulator=0"
is also possible.
* configtool/standalone/wxwin/mainwin.cpp:
Supress obsolete menu items.
* configtool/standalone/wxwin/platformeditordialog.cpp:
Replace LF (rather than CRLF) with ';' when storing GDB commands.
* ecostest/common/eCosTestPlatform.cpp:
Look for all persistent application settings under
"HKEY_CURRENT_USER\Software\eCos Configuration Tool\"
for consistency.
| author | jld |
|---|---|
| date | Thu, 13 Feb 2003 16:23:38 +0000 |
| parents | 4fbd36edba7c |
| children | c2866eff7fb9 |
line wrap: on
line diff
--- a/host/tools/configtool/standalone/wxwin/mainwin.cpp +++ b/host/tools/configtool/standalone/wxwin/mainwin.cpp @@ -283,7 +283,7 @@ ecMainFrame::ecMainFrame(wxDocManager *m wxGetApp().GetDocManager()->FileHistoryUseMenu(fileMenu); // Load file history { - wxConfig config(wxGetApp().GetSettings().GetConfigAppName(), wxT("Red Hat")); + wxConfig config(wxGetApp().GetSettings().GetConfigAppName()); config.SetPath(wxT("FileHistory/")); wxGetApp().GetDocManager()->FileHistoryLoad(config); } @@ -371,8 +371,8 @@ ecMainFrame::ecMainFrame(wxDocManager *m webMenu->AppendSeparator(); webMenu->Append(ecID_REDHAT_WEB_UITRON, _("µ&ITRON"), _("Opens the µITRON specification page")); - helpMenu->Append(ecID_REDHAT_WEB, _("&Red Hat on the Web"), webMenu); - helpMenu->AppendSeparator(); +// helpMenu->Append(ecID_REDHAT_WEB, _("&Red Hat on the Web"), webMenu); +// helpMenu->AppendSeparator(); helpMenu->Append(ecID_REPOSITORY_INFO, _("Repository &Information...\tCtrl+I"), _("Displays information about the current repository")); helpMenu->Append(wxID_ABOUT, _("&About the Configuration Tool..."), _("Displays program information, version and copyright"));
