diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-07-13 12:20:19 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-07-13 12:20:19 +0300 |
commit | f0b7627b7d88c1d5bb484961377114b210c8dd53 (patch) | |
tree | a978c3b8eca88759fa71b5fc34112f4bea9bbcec /src/gui/widgets/listbox.cpp | |
parent | d9be27bba8941260500066cdd43ebb016356bc67 (diff) | |
download | mv-f0b7627b7d88c1d5bb484961377114b210c8dd53.tar.gz mv-f0b7627b7d88c1d5bb484961377114b210c8dd53.tar.bz2 mv-f0b7627b7d88c1d5bb484961377114b210c8dd53.tar.xz mv-f0b7627b7d88c1d5bb484961377114b210c8dd53.zip |
Fix code style.
Diffstat (limited to 'src/gui/widgets/listbox.cpp')
-rw-r--r-- | src/gui/widgets/listbox.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/widgets/listbox.cpp b/src/gui/widgets/listbox.cpp index 68b50c458..5a8cc26e8 100644 --- a/src/gui/widgets/listbox.cpp +++ b/src/gui/widgets/listbox.cpp @@ -366,7 +366,7 @@ int ListBox::getSelectionByMouse(const int y) const { if (y < mPadding) return -1; - return (y - mPadding) / getRowHeight(); + return static_cast<unsigned int>(y - mPadding) / getRowHeight(); } void ListBox::setSelected(const int selected) |