diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-10-16 00:27:51 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-10-16 00:27:51 +0300 |
commit | c3434fa53d1c83bc65b640951364f842fe6c79f4 (patch) | |
tree | 51aa552c585518d7b2e2d67eba7c9500065dae05 /src/gui/widgets | |
parent | 185a53c504a0d53e54a7425ea829b5c951661ea8 (diff) | |
download | plus-c3434fa53d1c83bc65b640951364f842fe6c79f4.tar.gz plus-c3434fa53d1c83bc65b640951364f842fe6c79f4.tar.bz2 plus-c3434fa53d1c83bc65b640951364f842fe6c79f4.tar.xz plus-c3434fa53d1c83bc65b640951364f842fe6c79f4.zip |
Fix some signed/unsigned chars issues.
Diffstat (limited to 'src/gui/widgets')
-rw-r--r-- | src/gui/widgets/browserbox.cpp | 4 | ||||
-rw-r--r-- | src/gui/widgets/textbox.cpp | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/widgets/browserbox.cpp b/src/gui/widgets/browserbox.cpp index cac2a53f2..e338ab009 100644 --- a/src/gui/widgets/browserbox.cpp +++ b/src/gui/widgets/browserbox.cpp @@ -421,7 +421,7 @@ int BrowserBox::calcHeight() const int fontHeight = font->getHeight(); const int fontWidthMinus = font->getWidth("-"); - char const *const hyphen = "~"; + const char *const hyphen = "~"; const int hyphenWidth = font->getWidth(hyphen); gcn::Color selColor = mForegroundColor; @@ -495,7 +495,7 @@ int BrowserBox::calcHeight() // Check for color change in format "##x", x = [L,P,0..9] if (row.find("##", start) == start && row.size() > start + 2) { - const char c = row.at(start + 2); + const signed char c = row.at(start + 2); bool valid; const gcn::Color col = Theme::getThemeColor(c, valid); diff --git a/src/gui/widgets/textbox.cpp b/src/gui/widgets/textbox.cpp index 8af080294..cbefa4006 100644 --- a/src/gui/widgets/textbox.cpp +++ b/src/gui/widgets/textbox.cpp @@ -327,7 +327,7 @@ void TextBox::keyPressed(gcn::KeyEvent& keyEvent) if (key.isCharacter() && mEditable) { mTextRows[mCaretRow].insert(mCaretColumn, - std::string(1, static_cast<char>(key.getValue()))); + std::string(1, static_cast<signed char>(key.getValue()))); ++ mCaretColumn; } break; |