Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/desktop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Fella <nicolas.fella@gmx.de>2020-03-21 02:38:57 +0300
committerbackportbot[bot] <backportbot[bot]@users.noreply.github.com>2020-04-15 18:28:54 +0300
commit938761c87a07570057df9b6a0ef9d11a3c289b7a (patch)
tree0028f2a23f79476d5a210c3fb2b47943a3f0ca44
parentf9fe5dee1e553520c96400bd2283b40418495414 (diff)
Remove timeout parameter from showMessagebackport/1880/stable-2.6
It it never set by calling code so the default value of 10000 is used. It is only used in the call to QSystemTrayIcon, which uses 10000 as default value too. Signed-off-by: Nicolas Fella <nicolas.fella@gmx.de>
-rw-r--r--src/gui/systray.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/systray.cpp b/src/gui/systray.cpp
index 179c51811..8b0e903b6 100644
--- a/src/gui/systray.cpp
+++ b/src/gui/systray.cpp
@@ -46,7 +46,7 @@ void Systray::showMessage(const QString &title, const QString &message, MessageI
} else
#endif
{
- QSystemTrayIcon::showMessage(title, message, icon, millisecondsTimeoutHint);
+ QSystemTrayIcon::showMessage(title, message, icon);
}
}