summaryrefslogtreecommitdiff
path: root/src/chatchannelmanager.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/chatchannelmanager.cpp')
-rw-r--r--src/chatchannelmanager.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/chatchannelmanager.cpp b/src/chatchannelmanager.cpp
index 0d64c311..3f91f9ed 100644
--- a/src/chatchannelmanager.cpp
+++ b/src/chatchannelmanager.cpp
@@ -30,14 +30,14 @@
ChatChannelManager::ChatChannelManager()
{
//Load stored public chat channels from db
- tmwserv::Storage &store = tmwserv::Storage::instance("tmw");
+ Storage &store = Storage::instance("tmw");
mChatChannels = store.getChannelList();
}
ChatChannelManager::~ChatChannelManager()
{
- tmwserv::Storage &store = tmwserv::Storage::instance("tmw");
+ Storage &store = Storage::instance("tmw");
store.updateChannels(mChatChannels);
mChatChannels.clear();
}