summaryrefslogtreecommitdiff
path: root/src/gui/windows/charselectdialog.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2017-12-22 19:52:20 +0300
committerAndrei Karas <akaras@inbox.ru>2017-12-22 19:52:20 +0300
commit66d3d5fca48269a778e81c3ed7747edc2e56c862 (patch)
tree2b8b1cce4881bc4ff90fb159f28e3f510657192d /src/gui/windows/charselectdialog.cpp
parenta54ff6d4104a9b382c1419c00cc83684e391a445 (diff)
downloadplus-66d3d5fca48269a778e81c3ed7747edc2e56c862.tar.gz
plus-66d3d5fca48269a778e81c3ed7747edc2e56c862.tar.bz2
plus-66d3d5fca48269a778e81c3ed7747edc2e56c862.tar.xz
plus-66d3d5fca48269a778e81c3ed7747edc2e56c862.zip
Remove default parameters from textdialog.
Diffstat (limited to 'src/gui/windows/charselectdialog.cpp')
-rw-r--r--src/gui/windows/charselectdialog.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/gui/windows/charselectdialog.cpp b/src/gui/windows/charselectdialog.cpp
index 5a0a02acb..fb759eb96 100644
--- a/src/gui/windows/charselectdialog.cpp
+++ b/src/gui/windows/charselectdialog.cpp
@@ -459,7 +459,8 @@ void CharSelectDialog::askPasswordForDeletion(const int index)
_("Enter your email for deleting character"),
// TRANSLATORS: email label.
_("Enter email:"),
- this, false);
+ this,
+ false);
}
else
{
@@ -468,7 +469,8 @@ void CharSelectDialog::askPasswordForDeletion(const int index)
_("Enter password for deleting character"),
// TRANSLATORS: email label.
_("Enter password:"),
- this, true);
+ this,
+ true);
}
mDeleteDialog->setActionEventId("try delete character");
mDeleteDialog->addActionListener(this);