diff options
author | Thorbjørn Lindeijer <thorbjorn@lindeijer.nl> | 2010-02-28 22:22:58 +0100 |
---|---|---|
committer | Thorbjørn Lindeijer <thorbjorn@lindeijer.nl> | 2010-02-28 22:50:36 +0100 |
commit | d3672f21211233c24b47ecd5d5965d3909fdf88f (patch) | |
tree | c565cd06349bb88b7a3e8a01d69528abfba51400 /src/client.cpp | |
parent | a97ff19134537be254115139d3d57b930ce519a8 (diff) | |
download | mana-d3672f21211233c24b47ecd5d5965d3909fdf88f.tar.gz mana-d3672f21211233c24b47ecd5d5965d3909fdf88f.tar.bz2 mana-d3672f21211233c24b47ecd5d5965d3909fdf88f.tar.xz mana-d3672f21211233c24b47ecd5d5965d3909fdf88f.zip |
Some code cleanup regarding the server dialog
Reviewed-by: Jared Adams
Diffstat (limited to 'src/client.cpp')
-rw-r--r-- | src/client.cpp | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/src/client.cpp b/src/client.cpp index a1b7a512..10a43b8e 100644 --- a/src/client.cpp +++ b/src/client.cpp @@ -344,10 +344,8 @@ Client::Client(const Options &options): SkinLoader::prepareThemePath(); - // Initialize the item shortcuts. + // Initialize the item and emote shortcuts. itemShortcut = new ItemShortcut; - - // Initialize the emote shortcuts. emoteShortcut = new EmoteShortcut; gui = new Gui(graphics); @@ -608,7 +606,7 @@ int Client::exec() SkinLoader::instance()->setMinimumOpacity(0.8f); mCurrentDialog = new ServerDialog(&mCurrentServer, - mConfigDir); + mConfigDir); } else { @@ -1042,10 +1040,6 @@ void Client::initHomeDir() void Client::initConfiguration() { // Fill configuration with defaults - std::string defaultHost = branding.getValue("defaultServer", - "server.themanaworld.org"); - int defaultPort = (int) branding.getValue("defaultPort", DEFAULT_PORT); - config.setValue("port", defaultPort); config.setValue("hwaccel", false); #if (defined __APPLE__ || defined WIN32) && defined USE_OPENGL config.setValue("opengl", true); |