Fix NotificationPreview signal slot

This commit is contained in:
Jonas Kvinge 2020-08-09 02:07:22 +02:00
parent 8a5f82ee7d
commit c15103636c
1 changed files with 1 additions and 1 deletions

View File

@ -2526,7 +2526,7 @@ SettingsDialog *MainWindow::CreateSettingsDialog() {
connect(settings_dialog, SIGNAL(ReloadSettings()), SLOT(ReloadAllSettings()));
// Allows custom notification preview
connect(settings_dialog, SIGNAL(NotificationPreview(OSD::Behaviour, QString, QString)), SLOT(HandleNotificationPreview(OSD::Behaviour, QString, QString)));
connect(settings_dialog, SIGNAL(NotificationPreview(OSDBase::Behaviour, QString, QString)), SLOT(HandleNotificationPreview(OSDBase::Behaviour, QString, QString)));
return settings_dialog;
}