diff options
author | William Wold <[email protected]> | 2020-10-16 10:24:36 -0700 |
---|---|---|
committer | raveit65 <[email protected]> | 2020-10-21 20:35:15 +0200 |
commit | 06b511f10395f06b4013486ab50506f2d9e7b734 (patch) | |
tree | 7c2f976411448d0ac16e91964f34af47a1a1158b /applets/wncklet/window-menu.c | |
parent | 97feef6bdef78ef2ab357f885a8170b3ac3b33b1 (diff) | |
download | mate-panel-06b511f10395f06b4013486ab50506f2d9e7b734.tar.bz2 mate-panel-06b511f10395f06b4013486ab50506f2d9e7b734.tar.xz |
Switch to C-style comments as requested
Diffstat (limited to 'applets/wncklet/window-menu.c')
-rw-r--r-- | applets/wncklet/window-menu.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/applets/wncklet/window-menu.c b/applets/wncklet/window-menu.c index c751a161..48b1c31b 100644 --- a/applets/wncklet/window-menu.c +++ b/applets/wncklet/window-menu.c @@ -39,11 +39,11 @@ #include <gdk/gdkx.h> #define WNCK_I_KNOW_THIS_IS_UNSTABLE #include <libwnck/libwnck.h> -#endif // HAVE_X11 +#endif /* HAVE_X11 */ #ifdef HAVE_WAYLAND #include <gdk/gdkwayland.h> -#endif // HAVE_WAYLAND +#endif /* HAVE_WAYLAND */ #include "wncklet.h" #include "window-menu.h" @@ -257,7 +257,7 @@ gboolean window_menu_applet_fill(MatePanelApplet* applet) } else -#endif // HAVE_X11 +#endif /* HAVE_X11 */ #ifdef HAVE_WAYLAND if (GDK_IS_WAYLAND_DISPLAY (gdk_display_get_default ())) @@ -265,7 +265,7 @@ gboolean window_menu_applet_fill(MatePanelApplet* applet) window_menu->selector = gtk_label_new ("[Window menu not supported on Wayland]"); } else -#endif // HAVE_WAYLAND +#endif /* HAVE_WAYLAND */ { window_menu->selector = gtk_label_new ("[Window menu not supported on this platform]"); |