Steve, this is probably what you meant ...

This commit is contained in:
Glenn Maynard
2004-01-13 00:17:49 +00:00
parent 4ab53741d9
commit 0668271fde
2 changed files with 4 additions and 3 deletions
@@ -255,7 +255,7 @@ void ArchHooks_darwin::MessageBoxOKPrivate(CString sMessage, CString ID)
IgnoreMessage(ID);
}
void ArchHooks_darwin::MessageBoxError(CString sError)
void ArchHooks_darwin::MessageBoxErrorPrivate(CString sError)
{
CFStringRef error = CFStringCreateWithCString(NULL, sError, kCFStringEncodingASCII);
ShowAlert(kAlertStopAlert, error, CFSTR("OK"));
@@ -14,13 +14,14 @@
#include <SDL_thread.h>
#include <queue>
class ArchHooks_darwin : public ArchHooks {
class ArchHooks_darwin : public ArchHooks
{
public:
ArchHooks_darwin();
~ArchHooks_darwin() { }
void DumpDebugInfo();
void MessageBoxError(CString sError);
protected:
void MessageBoxErrorPrivate(CString sError);
void MessageBoxOKPrivate(CString sMessage, CString ID = "");
MessageBoxResult MessageBoxAbortRetryIgnorePrivate(CString sMessage, CString ID = "");
};