From 213af0fbde3f198ad1ab2143d32fc6798b7f8f50 Mon Sep 17 00:00:00 2001 From: Thorbjørn Lindeijer Date: Sun, 6 Dec 2009 21:19:39 +0100 Subject: Renamed DALStorage to Storage The only reason it was a DALStorage was because it used to implement the Storage interface, but that interface got removed a long time ago. --- src/account-server/main-account.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/account-server/main-account.cpp') diff --git a/src/account-server/main-account.cpp b/src/account-server/main-account.cpp index 345737d0..e7e08755 100644 --- a/src/account-server/main-account.cpp +++ b/src/account-server/main-account.cpp @@ -32,7 +32,7 @@ #include "account-server/accounthandler.hpp" #include "account-server/serverhandler.hpp" -#include "account-server/dalstorage.hpp" +#include "account-server/storage.hpp" #include "chat-server/chatchannelmanager.hpp" #include "chat-server/chathandler.hpp" #include "chat-server/guildmanager.hpp" @@ -58,7 +58,7 @@ static bool running = true; /**< Determines if server keeps running */ utils::StringFilter *stringFilter; /**< Slang's Filter */ /** Database handler. */ -DALStorage *storage; +Storage *storage; /** Communications (chat) message handler */ ChatHandler *chatHandler; @@ -156,7 +156,7 @@ static void initialize() // Open database try { - storage = new DALStorage; + storage = new Storage; storage->open(); } catch (std::string &error) { LOG_FATAL("Error opening the database: " << error); -- cgit v1.2.3-60-g2f50