summaryrefslogtreecommitdiff
path: root/src/notification.c
diff options
context:
space:
mode:
authorLogan Rathbone <poprocks@gmail.com>2021-02-13 19:53:09 -0500
committerLogan Rathbone <poprocks@gmail.com>2021-02-13 19:53:09 -0500
commit6b6ef217972a2776b46406ad421f4ade432c1574 (patch)
tree20b53445e390f979e9814d3fdd1377eb1f831274 /src/notification.c
parentcbc76d2217ece34bd8da7f1fd2aeb623c9f45f72 (diff)
downloadzenity-6b6ef217972a2776b46406ad421f4ade432c1574.tar.gz
.ui: use resource; cleanup before commencing meson conversion.
Diffstat (limited to 'src/notification.c')
-rw-r--r--src/notification.c14
1 files changed, 10 insertions, 4 deletions
diff --git a/src/notification.c b/src/notification.c
index 928a9ab..20a47f7 100644
--- a/src/notification.c
+++ b/src/notification.c
@@ -377,8 +377,11 @@ zenity_notification (ZenityData *data,
if (notification_data->listen)
{
zenity_notification_listen_on_stdin (data);
- // FIXME - not sure what to replace this with atm.
-// gtk_main ();
+
+ /* FIXME - gtk_main () was here. Possibly replace this with the
+ * zenity_util_gapp_main function and a corresponding _quit in
+ * place of the exit calls.
+ */
}
else
{
@@ -427,8 +430,11 @@ zenity_notification (ZenityData *data,
g_timeout_add_seconds (data->timeout_delay,
(GSourceFunc) zenity_util_timeout_handle,
NULL);
- // FIXME - not sure what to replace this with here.
-// gtk_main ();
+
+ /* FIXME - gtk_main () was here. Possibly replace this with the
+ * zenity_util_gapp_main function and a corresponding _quit in
+ * place of the exit calls.
+ */
}
}