diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-04-11 21:08:02 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-04-11 21:08:02 +0300 |
commit | aef5053e87c93a8987f89e4fdaf6cf3dd23efe81 (patch) | |
tree | 1114d14958b13eba28a51e57722d6c4da0b9d2e7 /src/gui/windows/unregisterdialog.cpp | |
parent | a50ecdf6045ba0f0d5e91d10ddeb8d5520ba55cb (diff) | |
download | plus-aef5053e87c93a8987f89e4fdaf6cf3dd23efe81.tar.gz plus-aef5053e87c93a8987f89e4fdaf6cf3dd23efe81.tar.bz2 plus-aef5053e87c93a8987f89e4fdaf6cf3dd23efe81.tar.xz plus-aef5053e87c93a8987f89e4fdaf6cf3dd23efe81.zip |
fix code style.
Diffstat (limited to 'src/gui/windows/unregisterdialog.cpp')
-rw-r--r-- | src/gui/windows/unregisterdialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/windows/unregisterdialog.cpp b/src/gui/windows/unregisterdialog.cpp index bb309c6f1..3d8627add 100644 --- a/src/gui/windows/unregisterdialog.cpp +++ b/src/gui/windows/unregisterdialog.cpp @@ -111,7 +111,7 @@ void UnRegisterDialog::action(const ActionEvent &event) else if (eventId == "unregister") { const std::string username = mLoginData->username.c_str(); - const std::string password = mPasswordField->getText(); + const std::string &password = mPasswordField->getText(); logger->log("UnregisterDialog::unregistered, Username is %s", username.c_str()); |