diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-12-22 19:52:20 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-12-22 19:52:20 +0300 |
commit | 66d3d5fca48269a778e81c3ed7747edc2e56c862 (patch) | |
tree | 2b8b1cce4881bc4ff90fb159f28e3f510657192d /src/gui/windows/charselectdialog.cpp | |
parent | a54ff6d4104a9b382c1419c00cc83684e391a445 (diff) | |
download | manaverse-66d3d5fca48269a778e81c3ed7747edc2e56c862.tar.gz manaverse-66d3d5fca48269a778e81c3ed7747edc2e56c862.tar.bz2 manaverse-66d3d5fca48269a778e81c3ed7747edc2e56c862.tar.xz manaverse-66d3d5fca48269a778e81c3ed7747edc2e56c862.zip |
Remove default parameters from textdialog.
Diffstat (limited to 'src/gui/windows/charselectdialog.cpp')
-rw-r--r-- | src/gui/windows/charselectdialog.cpp | 6 |
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); |