DialogDriverNull -> DialogDriver_Null

This commit is contained in:
Glenn Maynard
2004-09-05 01:20:55 +00:00
parent f3cc65a51d
commit 3c7aa0bf7f
2 changed files with 4 additions and 4 deletions
+3 -3
View File
@@ -17,7 +17,7 @@
#endif
static DialogDriver *g_pImpl = NULL;
static DialogDriverNull g_pNullDriver;
static DialogDriver_Null g_pNullDriver;
static bool g_bWindowed = false;
static bool g_bIsShowingDialog = false;
@@ -44,7 +44,7 @@ void Dialog::Init()
#if defined(HAVE_DIALOG_COCOA)
if( !DriversToTry[i].CompareNoCase("Cocoa") ) g_pImpl = new DialogDriver_Cocoa;
#endif
if( !DriversToTry[i].CompareNoCase("Null") ) g_pImpl = new DialogDriverNull;
if( !DriversToTry[i].CompareNoCase("Null") ) g_pImpl = new DialogDriver_Null;
}
catch( const RageException &e )
{
@@ -53,7 +53,7 @@ void Dialog::Init()
}
}
/* DialogDriverNull should have worked, at least. */
/* DialogDriver_Null should have worked, at least. */
ASSERT( g_pImpl != NULL );
}
+1 -1
View File
@@ -14,7 +14,7 @@ public:
virtual ~DialogDriver() { }
};
class DialogDriverNull: public DialogDriver { };
class DialogDriver_Null: public DialogDriver { };
#endif