WatchWidget: Change type of NUM_COLUMNS to int

Fixes integer comparison signedness warnings.
This commit is contained in:
Aapo Vienamo 2019-10-01 00:38:36 +03:00
parent e6ae204600
commit e3e682c4ca
1 changed files with 1 additions and 1 deletions

View File

@ -54,5 +54,5 @@ private:
bool m_updating = false; bool m_updating = false;
static constexpr size_t NUM_COLUMNS = 6; static constexpr int NUM_COLUMNS = 6;
}; };