aboutsummaryrefslogtreecommitdiff
path: root/src/trinityrealm/RealmList.cpp
diff options
context:
space:
mode:
authormegamage <none@none>2009-07-31 11:29:28 +0800
committermegamage <none@none>2009-07-31 11:29:28 +0800
commit0fcadd9d257fc716e7dc90b4034f33280f4dcb14 (patch)
treec15f3e0a9882eaa99bac40058b73151f811efd75 /src/trinityrealm/RealmList.cpp
parentca271eb5dceb2ad7d82a757b9df54c6882fec1b4 (diff)
*Replace "LoginDatabase" with "loginDatabase"
--HG-- branch : trunk
Diffstat (limited to 'src/trinityrealm/RealmList.cpp')
-rw-r--r--src/trinityrealm/RealmList.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/trinityrealm/RealmList.cpp b/src/trinityrealm/RealmList.cpp
index 6a3d6b47e0f..4de3a796179 100644
--- a/src/trinityrealm/RealmList.cpp
+++ b/src/trinityrealm/RealmList.cpp
@@ -29,7 +29,7 @@
INSTANTIATE_SINGLETON_1( RealmList );
-extern DatabaseType LoginDatabase;
+extern DatabaseType loginDatabase;
RealmList::RealmList( ) : m_UpdateInterval(0), m_NextUpdateTime(time(NULL))
{
@@ -82,7 +82,7 @@ void RealmList::UpdateRealms(bool init)
{
sLog.outDetail("Updating Realm List...");
- QueryResult *result = LoginDatabase.Query( "SELECT id, name, address, port, icon, color, timezone, allowedSecurityLevel, population FROM realmlist WHERE color <> 3 ORDER BY name" );
+ QueryResult *result = loginDatabase.Query( "SELECT id, name, address, port, icon, color, timezone, allowedSecurityLevel, population FROM realmlist WHERE color <> 3 ORDER BY name" );
///- Circle through results and add them to the realm map
if(result)