summaryrefslogtreecommitdiff
path: root/src/gui/windows/editserverdialog.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-08-18 21:52:57 +0300
committerAndrei Karas <akaras@inbox.ru>2014-08-18 22:06:50 +0300
commit7272851afd9e3a8fcdb531900a8e5c43af417a4b (patch)
tree4c39553287cf3f6edc1d5ca620f3c4e780d69df6 /src/gui/windows/editserverdialog.cpp
parente21479ccc48ed8383a6ab72f45c43e12e8dffa69 (diff)
downloadplus-7272851afd9e3a8fcdb531900a8e5c43af417a4b.tar.gz
plus-7272851afd9e3a8fcdb531900a8e5c43af417a4b.tar.bz2
plus-7272851afd9e3a8fcdb531900a8e5c43af417a4b.tar.xz
plus-7272851afd9e3a8fcdb531900a8e5c43af417a4b.zip
Add parameter for button name in okdialog.
Diffstat (limited to 'src/gui/windows/editserverdialog.cpp')
-rw-r--r--src/gui/windows/editserverdialog.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/gui/windows/editserverdialog.cpp b/src/gui/windows/editserverdialog.cpp
index 1b8127eaf..a89b36562 100644
--- a/src/gui/windows/editserverdialog.cpp
+++ b/src/gui/windows/editserverdialog.cpp
@@ -194,7 +194,10 @@ void EditServerDialog::action(const ActionEvent &event)
OkDialog *const dlg = new OkDialog(_("Error"),
// TRANSLATORS: edit server dialog error message
_("Please at least type both the address and the port "
- "of the server."), DialogType::ERROR,
+ "of the server."),
+ // TRANSLATORS: ok dialog button
+ _("OK"),
+ DialogType::ERROR,
true, true, nullptr, 260);
dlg->addActionListener(this);
}