diff options
Diffstat (limited to 'src-qt5/core')
-rw-r--r-- | src-qt5/core/lumina-desktop/desktop-plugins/calendar/CalendarPlugin.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src-qt5/core/lumina-desktop/desktop-plugins/calendar/CalendarPlugin.h b/src-qt5/core/lumina-desktop/desktop-plugins/calendar/CalendarPlugin.h index b3a6a8d7..abb138f7 100644 --- a/src-qt5/core/lumina-desktop/desktop-plugins/calendar/CalendarPlugin.h +++ b/src-qt5/core/lumina-desktop/desktop-plugins/calendar/CalendarPlugin.h @@ -31,6 +31,7 @@ public: timer = new QTimer(this); timer->setInterval(1800000); //30 minute refresh timer timer->start(); + connect(timer, SIGNAL(timeout()), this, SLOT(updateDate()) ); QTimer::singleShot(0,this, SLOT(updateDate()) ); connect(this, SIGNAL(PluginResized()), this, SLOT(UpdateCalendarSize())); } |