diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-09-09 02:07:50 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-09-09 02:07:50 +0300 |
commit | 0cec4fa69c575f69015f37686f1e010d09f2ec48 (patch) | |
tree | 3ee7de7a6e19f3bc952bd9da5d4aaf274a37795d /src/gui/statuswindow.cpp | |
parent | a85d7ad79ce803adc3469a618bfd8dfe188f2cbf (diff) | |
download | plus-0cec4fa69c575f69015f37686f1e010d09f2ec48.tar.gz plus-0cec4fa69c575f69015f37686f1e010d09f2ec48.tar.bz2 plus-0cec4fa69c575f69015f37686f1e010d09f2ec48.tar.xz plus-0cec4fa69c575f69015f37686f1e010d09f2ec48.zip |
fix code style.
Diffstat (limited to 'src/gui/statuswindow.cpp')
-rw-r--r-- | src/gui/statuswindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/statuswindow.cpp b/src/gui/statuswindow.cpp index cf88bf7ff..295adcd6e 100644 --- a/src/gui/statuswindow.cpp +++ b/src/gui/statuswindow.cpp @@ -731,7 +731,7 @@ void StatusWindow::action(const gcn::ActionEvent &event) std::string str; while (it != it_end) { - ChangeDisplay *const attr = dynamic_cast<ChangeDisplay*>( + const ChangeDisplay *const attr = dynamic_cast<ChangeDisplay*>( (*it).second); if (attr) str += attr->getValue() + " "; |