Steve, this is probably what you meant ...
This commit is contained in:
@@ -255,7 +255,7 @@ void ArchHooks_darwin::MessageBoxOKPrivate(CString sMessage, CString ID)
|
|||||||
IgnoreMessage(ID);
|
IgnoreMessage(ID);
|
||||||
}
|
}
|
||||||
|
|
||||||
void ArchHooks_darwin::MessageBoxError(CString sError)
|
void ArchHooks_darwin::MessageBoxErrorPrivate(CString sError)
|
||||||
{
|
{
|
||||||
CFStringRef error = CFStringCreateWithCString(NULL, sError, kCFStringEncodingASCII);
|
CFStringRef error = CFStringCreateWithCString(NULL, sError, kCFStringEncodingASCII);
|
||||||
ShowAlert(kAlertStopAlert, error, CFSTR("OK"));
|
ShowAlert(kAlertStopAlert, error, CFSTR("OK"));
|
||||||
|
|||||||
@@ -14,13 +14,14 @@
|
|||||||
#include <SDL_thread.h>
|
#include <SDL_thread.h>
|
||||||
#include <queue>
|
#include <queue>
|
||||||
|
|
||||||
class ArchHooks_darwin : public ArchHooks {
|
class ArchHooks_darwin : public ArchHooks
|
||||||
|
{
|
||||||
public:
|
public:
|
||||||
ArchHooks_darwin();
|
ArchHooks_darwin();
|
||||||
~ArchHooks_darwin() { }
|
~ArchHooks_darwin() { }
|
||||||
void DumpDebugInfo();
|
void DumpDebugInfo();
|
||||||
void MessageBoxError(CString sError);
|
|
||||||
protected:
|
protected:
|
||||||
|
void MessageBoxErrorPrivate(CString sError);
|
||||||
void MessageBoxOKPrivate(CString sMessage, CString ID = "");
|
void MessageBoxOKPrivate(CString sMessage, CString ID = "");
|
||||||
MessageBoxResult MessageBoxAbortRetryIgnorePrivate(CString sMessage, CString ID = "");
|
MessageBoxResult MessageBoxAbortRetryIgnorePrivate(CString sMessage, CString ID = "");
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user