summaryrefslogtreecommitdiffstats
path: root/generic/tkGrid.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/tkGrid.c
parent82fe455b2754b8296942b0d25dfdbe8e71a49c97 (diff)
downloadtk-64095fae8d758cb1757a59e8a08f913a37796462.zip
tk-64095fae8d758cb1757a59e8a08f913a37796462.tar.gz
tk-64095fae8d758cb1757a59e8a08f913a37796462.tar.bz2
Documentation
Diffstat (limited to 'generic/tkGrid.c')
-rw-r--r--generic/tkGrid.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/generic/tkGrid.c b/generic/tkGrid.c
index a4ac763..4711685 100644
--- a/generic/tkGrid.c
+++ b/generic/tkGrid.c
@@ -1735,12 +1735,13 @@ ArrangeGrid(
* If the master has no slaves anymore, then don't change the master size.
* 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;
}