summaryrefslogtreecommitdiff
path: root/src/daemon/engines.c
diff options
context:
space:
mode:
authorWilliam Wold <[email protected]>2020-10-16 11:02:14 -0700
committerraveit65 <[email protected]>2020-10-24 16:49:14 +0200
commit941ab7c4626e66537755cab9285f5a437fc6d888 (patch)
tree7459319981ab7eea8ec8a9f972fc0a2408f45cd3 /src/daemon/engines.c
parentb9888622f450931c3110f9c5b08b8bc821617f9a (diff)
downloadmate-notification-daemon-941ab7c4626e66537755cab9285f5a437fc6d888.tar.bz2
mate-notification-daemon-941ab7c4626e66537755cab9285f5a437fc6d888.tar.xz
Use C-style comments
Diffstat (limited to 'src/daemon/engines.c')
-rw-r--r--src/daemon/engines.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/daemon/engines.c b/src/daemon/engines.c
index 3a0334e..305604e 100644
--- a/src/daemon/engines.c
+++ b/src/daemon/engines.c
@@ -29,7 +29,7 @@
#ifdef HAVE_WAYLAND
#include <gdk/gdkwayland.h>
#include "wayland.h"
-#endif // HAVE_WAYLAND
+#endif /* HAVE_WAYLAND */
typedef struct {
GModule* module;
@@ -216,7 +216,7 @@ GtkWindow* theme_create_notification(UrlClickedCb url_clicked_cb)
{
wayland_init_notification (nw);
}
-#endif // HAVE_WAYLAND
+#endif /* HAVE_WAYLAND */
return nw;
}
@@ -329,7 +329,7 @@ void theme_move_notification(GtkWindow* nw, int x, int y)
{
wayland_move_notification (nw, x, y);
}
-#endif // HAVE_WAYLAND
+#endif /* HAVE_WAYLAND */
ThemeEngine* engine = g_object_get_data(G_OBJECT(nw), "_theme_engine");
engine->move_notification(nw, x, y);
}