diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-04-09 02:15:28 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-04-09 04:03:03 +0300 |
commit | 333745260338c876989744468a5f9c707e9bcc66 (patch) | |
tree | 46a2a99bd2b1a88810f016896a77d4ddd872ec63 /src/gui/widgets | |
parent | e60ac0a6bc0fd662cb7a5834896b3953a1bd07e8 (diff) | |
download | plus-333745260338c876989744468a5f9c707e9bcc66.tar.gz plus-333745260338c876989744468a5f9c707e9bcc66.tar.bz2 plus-333745260338c876989744468a5f9c707e9bcc66.tar.xz plus-333745260338c876989744468a5f9c707e9bcc66.zip |
Fix code style.
Diffstat (limited to 'src/gui/widgets')
-rw-r--r-- | src/gui/widgets/chattab.cpp | 3 | ||||
-rw-r--r-- | src/gui/widgets/label.cpp | 2 |
2 files changed, 2 insertions, 3 deletions
diff --git a/src/gui/widgets/chattab.cpp b/src/gui/widgets/chattab.cpp index 9b3a00963..5f97cd613 100644 --- a/src/gui/widgets/chattab.cpp +++ b/src/gui/widgets/chattab.cpp @@ -60,8 +60,7 @@ ChatTab::ChatTab(const std::string &name) : mTextOutput = new BrowserBox(BrowserBox::AUTO_WRAP); mTextOutput->setOpaque(false); - mTextOutput->setMaxRow(static_cast<int>( - config.getIntValue("ChatLogLength"))); + mTextOutput->setMaxRow(config.getIntValue("ChatLogLength")); if (chatWindow) mTextOutput->setLinkHandler(chatWindow->mItemLinkHandler); mTextOutput->setAlwaysUpdate(false); diff --git a/src/gui/widgets/label.cpp b/src/gui/widgets/label.cpp index 640010c62..dde7ddca3 100644 --- a/src/gui/widgets/label.cpp +++ b/src/gui/widgets/label.cpp @@ -38,5 +38,5 @@ Label::Label(const std::string &caption) : void Label::draw(gcn::Graphics *graphics) { - gcn::Label::draw(static_cast<gcn::Graphics*>(graphics)); + gcn::Label::draw(graphics); } |