Index: sources/gui/qml/components/NotificationBarSmall.qml =================================================================== diff -u -r6084f7bd48dc98616b4a5e0d076c2d03330001db -rae028f2ce4768d53d280f119ab2a11ac516fd3d2 --- sources/gui/qml/components/NotificationBarSmall.qml (.../NotificationBarSmall.qml) (revision 6084f7bd48dc98616b4a5e0d076c2d03330001db) +++ sources/gui/qml/components/NotificationBarSmall.qml (.../NotificationBarSmall.qml) (revision ae028f2ce4768d53d280f119ab2a11ac516fd3d2) @@ -86,15 +86,15 @@ 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;