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:32:49 +0300 |
commit | 2ed0917b4ee942ff55639500f846ae9cb4f48b90 (patch) | |
tree | 431158e61d703a747115088e1b084651c923e0dd /src/dropshortcut.cpp | |
parent | 875ece90ff94c4cf295b53c8bb37d9238ece38e9 (diff) | |
download | plus-2ed0917b4ee942ff55639500f846ae9cb4f48b90.tar.gz plus-2ed0917b4ee942ff55639500f846ae9cb4f48b90.tar.bz2 plus-2ed0917b4ee942ff55639500f846ae9cb4f48b90.tar.xz plus-2ed0917b4ee942ff55639500f846ae9cb4f48b90.zip |
Fix some signed/unsigned chars issues.
Diffstat (limited to 'src/dropshortcut.cpp')
-rw-r--r-- | src/dropshortcut.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dropshortcut.cpp b/src/dropshortcut.cpp index 6fe67ce06..1117ec16f 100644 --- a/src/dropshortcut.cpp +++ b/src/dropshortcut.cpp @@ -63,7 +63,7 @@ void DropShortcut::load(const bool oldConfig) for (int i = 0; i < DROP_SHORTCUT_ITEMS; i++) { const int itemId = cfg->getValue("drop" + toString(i), -1); - const unsigned char itemColor = static_cast<unsigned char>( + const unsigned char itemColor = static_cast<const unsigned char>( cfg->getValue("dropColor" + toString(i), -1)); if (itemId != -1) |