This commit is contained in:
Steve Checkoway
2005-03-26 18:21:34 +00:00
parent da80435d0f
commit d7115f1dd1
@@ -9,12 +9,13 @@ extern void MakeNewCocoaWindow();
extern void DisposeOfCocoaWindow(); extern void DisposeOfCocoaWindow();
extern void SetCocoaWindowText(const char *s); extern void SetCocoaWindowText(const char *s);
class LoadingWindow_Cocoa : public LoadingWindow { class LoadingWindow_Cocoa : public LoadingWindow
{
public: public:
LoadingWindow_Cocoa() { MakeNewCocoaWindow(); } LoadingWindow_Cocoa() { MakeNewCocoaWindow(); }
~LoadingWindow_Cocoa() { DisposeOfCocoaWindow(); } ~LoadingWindow_Cocoa() { DisposeOfCocoaWindow(); }
void Paint() {} /* Not needed */ void Paint() { } /* Not needed but pure virtual*/
void SetText( CString str ) { SetCocoaWindowText( str ); } void SetText( CString str ) { SetCocoaWindowText( str ); }
}; };
#define USE_LOADING_WINDOW_COCOA #define USE_LOADING_WINDOW_COCOA
@@ -22,7 +23,7 @@ public:
#endif #endif
/* /*
* (c) 2003-2004 Steve Checkoway * (c) 2003-2005 Steve Checkoway
* All rights reserved. * All rights reserved.
* *
* Permission is hereby granted, free of charge, to any person obtaining a * Permission is hereby granted, free of charge, to any person obtaining a