diff options
author | Andrei Karas <akaras@inbox.ru> | 2011-03-18 17:48:29 +0200 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2011-03-18 17:49:00 +0200 |
commit | f98d003e354a1792117b7cbc771d1dd91475a156 (patch) | |
tree | dc2a297f7c4026394c9954ae4bfd4abd22ef9612 /src/itemshortcut.cpp | |
parent | bb0a6cb25b2985fd1f74c9d27d5a46f6863e2dee (diff) | |
download | plus-f98d003e354a1792117b7cbc771d1dd91475a156.tar.gz plus-f98d003e354a1792117b7cbc771d1dd91475a156.tar.bz2 plus-f98d003e354a1792117b7cbc771d1dd91475a156.tar.xz plus-f98d003e354a1792117b7cbc771d1dd91475a156.zip |
Fix most old style cast except manaserv and libxml2 defines.
Diffstat (limited to 'src/itemshortcut.cpp')
-rw-r--r-- | src/itemshortcut.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/itemshortcut.cpp b/src/itemshortcut.cpp index b15e618d7..7f8f8ddc0 100644 --- a/src/itemshortcut.cpp +++ b/src/itemshortcut.cpp @@ -62,7 +62,7 @@ void ItemShortcut::load(bool oldConfig) name = "shortcut"; for (int i = 0; i < SHORTCUT_ITEMS; i++) { - int itemId = (int) cfg->getValue(name + toString(i), -1); + int itemId = static_cast<int>(cfg->getValue(name + toString(i), -1)); mItems[i] = itemId; } |