diff --git a/CMakeLists.txt b/CMakeLists.txt index 7017b34..f14b9c3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -8,7 +8,7 @@ set(META_APP_AUTHOR "Martchus") set(META_APP_URL "https://github.com/${META_APP_AUTHOR}/${META_PROJECT_NAME}") set(META_APP_DESCRIPTION "Common Qt related C++ classes and routines used by my applications such as dialogs, widgets and models") set(META_VERSION_MAJOR 5) -set(META_VERSION_MINOR 4) +set(META_VERSION_MINOR 5) set(META_VERSION_PATCH 1) set(META_APP_VERSION ${META_VERSION_MAJOR}.${META_VERSION_MINOR}.${META_VERSION_PATCH}) diff --git a/misc/recentmenumanager.cpp b/misc/recentmenumanager.cpp index 01cfe30..b227026 100644 --- a/misc/recentmenumanager.cpp +++ b/misc/recentmenumanager.cpp @@ -90,7 +90,7 @@ void RecentMenuManager::addEntry(const QString &path) } } if(!entry) { - // remove old entries to have never more then 10 entries + // remove old entries to have never more than 10 entries for(int i = existingEntries.size() - 1; i > 8; --i) { delete existingEntries[i]; }