diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-08-29 23:40:41 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-08-29 23:40:41 +0300 |
commit | 1feb7f7edc5f8f383e594b256ef4cab0fae75b99 (patch) | |
tree | 68fe26fdd1ef25645deef894c296b6fbc80b0e13 /src/gui/textpopup.cpp | |
parent | 41044107cc0a17125ebd806c9934b6eb636dafe6 (diff) | |
download | plus-1feb7f7edc5f8f383e594b256ef4cab0fae75b99.tar.gz plus-1feb7f7edc5f8f383e594b256ef4cab0fae75b99.tar.bz2 plus-1feb7f7edc5f8f383e594b256ef4cab0fae75b99.tar.xz plus-1feb7f7edc5f8f383e594b256ef4cab0fae75b99.zip |
Add const to more classes.
Diffstat (limited to 'src/gui/textpopup.cpp')
-rw-r--r-- | src/gui/textpopup.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/textpopup.cpp b/src/gui/textpopup.cpp index b7967e32d..c65c34804 100644 --- a/src/gui/textpopup.cpp +++ b/src/gui/textpopup.cpp @@ -61,7 +61,7 @@ TextPopup::~TextPopup() { } -void TextPopup::show(int x, int y, const std::string &str1, +void TextPopup::show(const int x, const int y, const std::string &str1, const std::string &str2, const std::string &str3) { mText1->setCaption(str1); |