summaryrefslogtreecommitdiff
path: root/applets/notification_area/system-tray/fixedtip.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 /applets/notification_area/system-tray/fixedtip.c
parent75958f67ce255167ce09d8054efe25823c55cafd (diff)
downloadmate-panel-34c561894bfedab242876fea249ab8596a61e8a4.tar.bz2
mate-panel-34c561894bfedab242876fea249ab8596a61e8a4.tar.xz
Avoid using single-line cpp comments
Diffstat (limited to 'applets/notification_area/system-tray/fixedtip.c')
-rw-r--r--applets/notification_area/system-tray/fixedtip.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/applets/notification_area/system-tray/fixedtip.c b/applets/notification_area/system-tray/fixedtip.c
index f7b28d7b..180cbdd7 100644
--- a/applets/notification_area/system-tray/fixedtip.c
+++ b/applets/notification_area/system-tray/fixedtip.c
@@ -220,20 +220,21 @@ na_fixed_tip_new (GtkWidget *parent,
fixedtip->priv->parent = parent;
#if 0
- //FIXME: would be nice to be able to get the toplevel for the tip, but this
- //doesn't work
+ /* FIXME: would be nice to be able to get the toplevel for the tip, but this
+ * doesn't work
+ */
GtkWidget *toplevel;
toplevel = gtk_widget_get_toplevel (parent);
/*
if (toplevel && gtk_widget_is_toplevel (toplevel) && GTK_IS_WINDOW (toplevel))
gtk_window_set_transient_for (GTK_WINDOW (fixedtip), GTK_WINDOW (toplevel));
- */
+ */
#endif
fixedtip->priv->orientation = orientation;
- //FIXME: would be nice to move the tip when the notification area moves
+ /* FIXME: would be nice to move the tip when the notification area moves */
g_signal_connect_object (parent, "size-allocate",
G_CALLBACK (na_fixed_tip_parent_size_allocated),
fixedtip, 0);