From 9ef6d73a73e4914288ee0505c4f88192f925a058 Mon Sep 17 00:00:00 2001 From: "Peter G. (nephros)" Date: Sun, 2 May 2021 11:57:51 +0200 Subject: [PATCH] fix suspected copypaste error --- application/src/settings.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/src/settings.cpp b/application/src/settings.cpp index 36b7610..04ef177 100644 --- a/application/src/settings.cpp +++ b/application/src/settings.cpp @@ -91,7 +91,7 @@ void Settings::setHighNotificationsInterval(const int newInterval) { void Settings::setLowNotificationsInterval(const int newInterval) { if(saveInteger(sLowNotificationsInterval, newInterval, lowNotificationsInterval)) { - emit highNotificationsIntervalChanged(lowNotificationsInterval); + emit lowNotificationsIntervalChanged(lowNotificationsInterval); } }