diff options
Diffstat (limited to 'src/gui/editserverdialog.cpp')
-rw-r--r-- | src/gui/editserverdialog.cpp | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/gui/editserverdialog.cpp b/src/gui/editserverdialog.cpp index 34d15c76c..1361951c8 100644 --- a/src/gui/editserverdialog.cpp +++ b/src/gui/editserverdialog.cpp @@ -124,7 +124,8 @@ EditServerDialog::EditServerDialog(ServerDialog *const parent, // Do this manually instead of calling reflowLayout so we can enforce a // minimum width. - int width = 0, height = 0; + int width = 0; + int height = 0; getLayout().reflow(width, height); if (width < 300) { @@ -196,11 +197,6 @@ EditServerDialog::~EditServerDialog() delete mTypeListModel; } -void EditServerDialog::logic() -{ - Window::logic(); -} - void EditServerDialog::action(const gcn::ActionEvent &event) { const std::string &eventId = event.getId(); |