diff --git a/stella/src/ui/cyberstella/AboutDlg.cpp b/stella/src/ui/cyberstella/AboutDlg.cpp index 48dc23a71..cd4042d56 100644 --- a/stella/src/ui/cyberstella/AboutDlg.cpp +++ b/stella/src/ui/cyberstella/AboutDlg.cpp @@ -51,10 +51,10 @@ BOOL AboutDlg::OnInitDialog() { CDialog::OnInitDialog(); - m_hlMail_JSM.SubclassDlgItem(IDC_EMAIL_JEFFMILL, this); + m_hlMail_JSM.SubclassDlgItem(IDC_EMAIL_MAINTAINER, this); m_hlMail_JSM.SetURL( _T("mailto:stephena@users.sourceforge.net?Subject=Cyberstella") ); - m_hlWWW_JSM.SubclassDlgItem(IDC_WEB_JEFFMILL, this); + m_hlWWW_JSM.SubclassDlgItem(IDC_WEB_MAINTAINER, this); m_hlWWW_JSM.SetURL( _T("http://minbar.org") ); m_hlMail_Stella.SubclassDlgItem(IDC_EMAIL_STELLA, this); diff --git a/stella/src/ui/cyberstella/CyberstellaView.h b/stella/src/ui/cyberstella/CyberstellaView.h index 581dde440..e6d20b159 100644 --- a/stella/src/ui/cyberstella/CyberstellaView.h +++ b/stella/src/ui/cyberstella/CyberstellaView.h @@ -12,7 +12,7 @@ #include "GlobalData.hxx" #include "PropsSet.hxx" #include "Sound.hxx" -#include "SettingsWin32.hxx" +#include "Settings.hxx" #include "GameList.h" class CCyberstellaView : public CFormView @@ -77,7 +77,7 @@ private: // members PropertiesSet* m_pPropertiesSet; Sound* pSound; - SettingsWin32* pSettings; + Settings* pSettings; bool m_bIsPause; }; diff --git a/stella/src/ui/cyberstella/SettingsWin32.cxx b/stella/src/ui/cyberstella/SettingsWin32.cxx index e58c7b3f3..8dd34f32f 100644 --- a/stella/src/ui/cyberstella/SettingsWin32.cxx +++ b/stella/src/ui/cyberstella/SettingsWin32.cxx @@ -13,7 +13,7 @@ // See the file "license" for information on usage and redistribution of // this file, and for a DISCLAIMER OF ALL WARRANTIES. // -// $Id: SettingsWin32.cxx,v 1.1 2003-09-21 14:33:34 stephena Exp $ +// $Id: SettingsWin32.cxx,v 1.2 2003-09-23 19:41:16 stephena Exp $ //============================================================================ #include "bspf.hxx" @@ -32,20 +32,6 @@ SettingsWin32::~SettingsWin32() cerr << "SettingsWin32::~SettingsWin32()\n"; } -// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -void SettingsWin32::setArgument(string& key, string& value) -{ - cerr << "SettingsWin32::setArgument()\n"; -} - -// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -string SettingsWin32::getArguments() -{ - cerr << "SettingsWin32::getArguments()\n"; - - return ""; -} - // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - string SettingsWin32::stateFilename(uInt32 state) { @@ -61,3 +47,8 @@ string SettingsWin32::snapshotFilename() return ""; } + +// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +void SettingsWin32::usage(string& message) +{ +} diff --git a/stella/src/ui/cyberstella/SettingsWin32.hxx b/stella/src/ui/cyberstella/SettingsWin32.hxx index 33faccdd4..56aeb83f3 100644 --- a/stella/src/ui/cyberstella/SettingsWin32.hxx +++ b/stella/src/ui/cyberstella/SettingsWin32.hxx @@ -13,7 +13,7 @@ // See the file "license" for information on usage and redistribution of // this file, and for a DISCLAIMER OF ALL WARRANTIES. // -// $Id: SettingsWin32.hxx,v 1.1 2003-09-21 14:33:34 stephena Exp $ +// $Id: SettingsWin32.hxx,v 1.2 2003-09-23 19:41:16 stephena Exp $ //============================================================================ #ifndef SETTINGS_WIN32_HXX @@ -29,10 +29,9 @@ class SettingsWin32 : public Settings virtual ~SettingsWin32(); public: - virtual void setArgument(string& key, string& value); - virtual string getArguments(); virtual string stateFilename(uInt32 state); virtual string snapshotFilename(); + virtual void usage(string& message); }; #endif