Fixed 64-bit related compiler warnings.

This commit is contained in:
hiker
2017-04-07 23:43:01 +10:00
parent 668fdd3b49
commit 5af4ea35a7
12 changed files with 21 additions and 20 deletions

View File

@@ -110,7 +110,7 @@ public:
void clearButtons();
/** Returns the number of created buttons */
unsigned int getButtonsCount() {return m_buttons.size();}
unsigned int getButtonsCount() { return (unsigned int)m_buttons.size();}
/** Returns pointer to the selected button */
MultitouchButton* getButton(unsigned int i) {return m_buttons.at(i);}