summaryrefslogtreecommitdiff
path: root/mate-panel/panel-test-applets.c
diff options
context:
space:
mode:
authorrbuj <[email protected]>2020-06-20 14:56:13 +0200
committerraveit65 <[email protected]>2020-07-05 21:10:53 +0200
commit34c561894bfedab242876fea249ab8596a61e8a4 (patch)
treeb7bc1bbca8ffeb4f36728426a82d97ec2feb3910 /mate-panel/panel-test-applets.c
parent75958f67ce255167ce09d8054efe25823c55cafd (diff)
downloadmate-panel-34c561894bfedab242876fea249ab8596a61e8a4.tar.bz2
mate-panel-34c561894bfedab242876fea249ab8596a61e8a4.tar.xz
Avoid using single-line cpp comments
Diffstat (limited to 'mate-panel/panel-test-applets.c')
-rw-r--r--mate-panel/panel-test-applets.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mate-panel/panel-test-applets.c b/mate-panel/panel-test-applets.c
index 34790dbf..83f27ca7 100644
--- a/mate-panel/panel-test-applets.c
+++ b/mate-panel/panel-test-applets.c
@@ -128,7 +128,7 @@ applet_activated_cb (GObject *source_object,
GTK_MESSAGE_ERROR,
GTK_BUTTONS_CLOSE,
_("Failed to load applet %s"),
- error->message); // FIXME
+ error->message); /* FIXME */
gtk_dialog_run (GTK_DIALOG (dialog));
gtk_widget_destroy (dialog);
return;
@@ -150,7 +150,7 @@ load_applet_into_window (const char *title,
container = mate_panel_applet_container_new ();
applet_window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
- //FIXME: we could set the window icon with the applet icon
+ /* FIXME: we could set the window icon with the applet icon */
gtk_window_set_title (GTK_WINDOW (applet_window), title);
gtk_container_add (GTK_CONTAINER (applet_window), container);
gtk_widget_show (container);