general cleanup

-use of the override keyword
-delete unused code
-const correctness
-more uniform code style
-for each with const references when possible
-getters no longer use the word 'get'
-others
This commit is contained in:
lupoDharkael
2017-08-09 13:20:07 +02:00
parent 4d0b4d7b51
commit 924d467c53
69 changed files with 502 additions and 448 deletions

View File

@@ -18,7 +18,7 @@ void SystemNotification::sendMessage(
const QString &title,
const int timeout)
{
if(!ConfigHandler().getDesktopNotification()) {
if(!ConfigHandler().desktopNotificationValue()) {
return;
}