]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
plugins: push-notification: Reformat push-notification-event-flagsclear.h.
authorStephan Bosch <stephan.bosch@open-xchange.com>
Sun, 1 Dec 2019 10:25:09 +0000 (11:25 +0100)
committertimo.sirainen <timo.sirainen@open-xchange.com>
Thu, 6 Feb 2020 12:18:41 +0000 (12:18 +0000)
src/plugins/push-notification/push-notification-event-flagsclear.h

index aca344131839258c856a2aca5c84e6caac5ba66b..541233536655799d4680865cdf32d27753baaa61 100644 (file)
@@ -3,23 +3,20 @@
 #ifndef PUSH_NOTIFICATION_EVENT_FLAGSCLEAR_H
 #define PUSH_NOTIFICATION_EVENT_FLAGSCLEAR_H
 
-
 #include "mail-types.h"
 
-
 struct push_notification_event_flagsclear_config {
-    /* Store the old flags/keywords? */
-    bool store_old;
+       /* Store the old flags/keywords? */
+       bool store_old;
 };
 
 struct push_notification_event_flagsclear_data {
-    enum mail_flags flags_clear;
-    ARRAY_TYPE(keywords) keywords_clear;
+       enum mail_flags flags_clear;
+       ARRAY_TYPE(keywords) keywords_clear;
 
-    enum mail_flags flags_old;
-    ARRAY_TYPE(keywords) keywords_old;
+       enum mail_flags flags_old;
+       ARRAY_TYPE(keywords) keywords_old;
 };
 
-
-#endif /* PUSH_NOTIFICATION_EVENT_FLAGSCLEAR_H */
+#endif