summaryrefslogtreecommitdiffstats
path: root/unix/tkUnixSysNotify.c
diff options
context:
space:
mode:
authorfvogel <fvogelnew1@free.fr>2020-11-21 17:30:44 (GMT)
committerfvogel <fvogelnew1@free.fr>2020-11-21 17:30:44 (GMT)
commit1d034924841fd8e918b37ed3212515e36321fc08 (patch)
treeeab97696056a2498b1784e675add375d0eb7d465 /unix/tkUnixSysNotify.c
parent65eda041b5581597f931de677910683bf800883b (diff)
downloadtk-1d034924841fd8e918b37ed3212515e36321fc08.zip
tk-1d034924841fd8e918b37ed3212515e36321fc08.tar.gz
tk-1d034924841fd8e918b37ed3212515e36321fc08.tar.bz2
More cosmetic changes
Diffstat (limited to 'unix/tkUnixSysNotify.c')
-rwxr-xr-xunix/tkUnixSysNotify.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/unix/tkUnixSysNotify.c b/unix/tkUnixSysNotify.c
index 2a11c6b..bf0d7ea 100755
--- a/unix/tkUnixSysNotify.c
+++ b/unix/tkUnixSysNotify.c
@@ -1,6 +1,8 @@
/*
+ * tkUnixSysNotify.c --
+ *
* tkUnixSysNotify.c implements a "sysnotify" Tcl command which
- permits one to post system notifications based on the libnotify API.
+ * permits one to post system notifications based on the libnotify API.
*
* Copyright (c) 2020 Kevin Walzer/WordTech Communications LLC.
*
@@ -86,9 +88,9 @@ static int SysNotifyCmd(
message = Tcl_GetString(objv[2]);
icon = "dialog-information";
-/*
- * Call to notify_init should go here to prevent test suite failure.
- */
+ /*
+ * Call to notify_init should go here to prevent test suite failure.
+ */
notify_init("Wish");
notif = notify_notification_new(title, message, icon);
notify_notification_show(notif, NULL);