Skip to content

Commit

Permalink
Fixed a signed unsigned comparison warning in TailoringWindow
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Preisler committed Aug 9, 2016
1 parent 653e073 commit e34cd2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/TailoringWindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -732,7 +732,7 @@ void TailoringWindow::serializeCollapsedItems()

void TailoringWindow::removeOldCollapsedLists()
{
const unsigned int maxAgeInDays = 3 * 31; // ~3 months should be enough for everyone :-P
const int maxAgeInDays = 3 * 31; // ~3 months should be enough for everyone :-P
const QDateTime currentDateTime = QDateTime::currentDateTime();

QStringList keys = mQSettings->childKeys();
Expand Down

0 comments on commit e34cd2e

Please sign in to comment.