summaryrefslogtreecommitdiffstats
path: root/generic/tkPack.c
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2018-10-28 22:17:26 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2018-10-28 22:17:26 (GMT)
commit64095fae8d758cb1757a59e8a08f913a37796462 (patch)
tree59631fabede72e2eaf33a0f657704863d5e8519a /generic/tkPack.c
parent82fe455b2754b8296942b0d25dfdbe8e71a49c97 (diff)
downloadtk-64095fae8d758cb1757a59e8a08f913a37796462.zip
tk-64095fae8d758cb1757a59e8a08f913a37796462.tar.gz
tk-64095fae8d758cb1757a59e8a08f913a37796462.tar.bz2
Documentation
Diffstat (limited to 'generic/tkPack.c')
-rw-r--r--generic/tkPack.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/generic/tkPack.c b/generic/tkPack.c
index 12f651a..ef6e30e 100644
--- a/generic/tkPack.c
+++ b/generic/tkPack.c
@@ -613,12 +613,13 @@ ArrangePacking(
* If the master has no slaves anymore, then leave the master's size as-is.
* Otherwise there is no way to "relinquish" control over the master
* so another geometry manager can take over.
- * Send event to "NoManagedChild" to inform about no managed grid but
- * not resized.
+ *
+ * Sends the event "NoManagedChild" to the master to inform it about there
+ * being no managed children inside it.
*/
if (masterPtr->slavePtr == NULL) {
- TkSendVirtualEvent(masterPtr->tkwin, "NoManagedChild", NULL);
+ TkSendVirtualEvent(masterPtr->tkwin, "NoManagedChild", NULL);
return;
}