Index: sources/gui/qml/components/NotificationBarSmall.qml =================================================================== diff -u -r923377d29fe730c0e2209386479a61b1e8ee1097 -r57ea732311e6f4c746974f5a52316f63dec23ca8 --- sources/gui/qml/components/NotificationBarSmall.qml (.../NotificationBarSmall.qml) (revision 923377d29fe730c0e2209386479a61b1e8ee1097) +++ sources/gui/qml/components/NotificationBarSmall.qml (.../NotificationBarSmall.qml) (revision 57ea732311e6f4c746974f5a52316f63dec23ca8) @@ -84,19 +84,19 @@ onLevelChanged: { switch (level) { - case GuiActions.ALARM_PRIORITY_HIGH: + case guiActions.ALARM_PRIORITY_HIGH: _root.color = Colors.textNotificationHighBg; _text.color = Colors.textNotificationHighFg; break; - case GuiActions.ALARM_PRIORITY_MEDIUM: + case guiActions.ALARM_PRIORITY_MEDIUM: _root.color = Colors.textNotificationMedBg; _text.color = Colors.textNotificationMedFg; break; - case GuiActions.ALARM_PRIORITY_LOW: + case guiActions.ALARM_PRIORITY_LOW: _root.color = Colors.textNotificationLowBg; _text.color = Colors.textNotificationLowFg; break; - default : // GuiActions.ALARM_PRIORITY_NONE + default : // guiActions.ALARM_PRIORITY_NONE _root.color = Colors.textNotificationNoneBg; _text.color = Colors.textNotificationNoneFg; break;