summaryrefslogtreecommitdiff
path: root/src/gui/chat.cpp
diff options
context:
space:
mode:
authorBjørn Lindeijer <bjorn@lindeijer.nl>2009-03-27 19:23:34 +0100
committerBjørn Lindeijer <bjorn@lindeijer.nl>2009-03-27 20:18:11 +0100
commitff5e1957dd4fde40e41e4c5e4b9e04e1f36e5ef2 (patch)
treeeba1b1374325047de928490f96fc16cbf5477d70 /src/gui/chat.cpp
parent74f23fd3d0e1fb3be8e5419193d57d91746c887a (diff)
downloadMana-ff5e1957dd4fde40e41e4c5e4b9e04e1f36e5ef2.tar.gz
Mana-ff5e1957dd4fde40e41e4c5e4b9e04e1f36e5ef2.tar.bz2
Mana-ff5e1957dd4fde40e41e4c5e4b9e04e1f36e5ef2.tar.xz
Mana-ff5e1957dd4fde40e41e4c5e4b9e04e1f36e5ef2.zip
Removed unnecessary parenthesis on constructors
Diffstat (limited to 'src/gui/chat.cpp')
-rw-r--r--src/gui/chat.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/chat.cpp b/src/gui/chat.cpp
index 48858bf6..5b07980b 100644
--- a/src/gui/chat.cpp
+++ b/src/gui/chat.cpp
@@ -62,7 +62,7 @@ ChatWindow::ChatWindow(Network * network):
mChatInput->setActionEventId("chatinput");
mChatInput->addActionListener(this);
- mChatTabs = new TabbedArea();
+ mChatTabs = new TabbedArea;
add(mChatTabs);
add(mChatInput);