summaryrefslogtreecommitdiff
path: root/src/gui/char_server.cpp
diff options
context:
space:
mode:
authorBjørn Lindeijer <bjorn@lindeijer.nl>2005-01-01 22:58:14 +0000
committerBjørn Lindeijer <bjorn@lindeijer.nl>2005-01-01 22:58:14 +0000
commitfd39b0c42c84966e58cd1faf5186e9cacb58d60b (patch)
treee4eed4054e7f5caf38c0c5908899049019bfcf2f /src/gui/char_server.cpp
parente170c3e3105352e71344cc2c04f61701ad4959f4 (diff)
downloadmana-client-fd39b0c42c84966e58cd1faf5186e9cacb58d60b.tar.gz
mana-client-fd39b0c42c84966e58cd1faf5186e9cacb58d60b.tar.bz2
mana-client-fd39b0c42c84966e58cd1faf5186e9cacb58d60b.tar.xz
mana-client-fd39b0c42c84966e58cd1faf5186e9cacb58d60b.zip
Some changes that should be quite meaningless.
Diffstat (limited to 'src/gui/char_server.cpp')
-rw-r--r--src/gui/char_server.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gui/char_server.cpp b/src/gui/char_server.cpp
index ef45fbcc..6fcb98d1 100644
--- a/src/gui/char_server.cpp
+++ b/src/gui/char_server.cpp
@@ -26,6 +26,7 @@
#include "button.h"
#include "window.h"
#include "scrollarea.h"
+#include "listbox.h"
char server[30];
int showServerList = 1;
@@ -35,7 +36,7 @@ ServerSelectDialog::ServerSelectDialog(gcn::Container *parent):
Window(parent, "Select Server")
{
serverListModel = new ServerListModel();
- serverList = new gcn::ListBox(serverListModel);
+ serverList = new ListBox(serverListModel);
scrollArea = new ScrollArea(serverList);
okButton = new Button("OK");
cancelButton = new Button("Cancel");