summaryrefslogtreecommitdiffstats
path: root/generic
diff options
context:
space:
mode:
authorfvogel <fvogelnew1@free.fr>2021-08-27 08:21:34 (GMT)
committerfvogel <fvogelnew1@free.fr>2021-08-27 08:21:34 (GMT)
commit4bc57ff33a4272f6b3f1030d6abd33d149aa6e02 (patch)
tree7a8721d305a5a74f7caa3fd327c96aef212757c2 /generic
parentde7b4ec667039126edb1fc76898f79c4068231a7 (diff)
downloadtk-4bc57ff33a4272f6b3f1030d6abd33d149aa6e02.zip
tk-4bc57ff33a4272f6b3f1030d6abd33d149aa6e02.tar.gz
tk-4bc57ff33a4272f6b3f1030d6abd33d149aa6e02.tar.bz2
Fix erroneous comment (labelframe widgets do exist)
Diffstat (limited to 'generic')
-rw-r--r--generic/tkFont.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/generic/tkFont.c b/generic/tkFont.c
index d3ef712..726995b 100644
--- a/generic/tkFont.c
+++ b/generic/tkFont.c
@@ -913,10 +913,10 @@ RecomputeWidgets(
*
* However, the additional overhead of the recursive calls may become a
* performance problem if typical usage alters such that -font'ed widgets
- * appear high in the heirarchy, causing deep recursion. This could happen
- * with text widgets, or more likely with the (not yet existant) labeled
- * frame widget. With these widgets it is possible, even likely, that a
- * -font'ed widget (text or labeled frame) will not be a leaf node, but
+ * appear high in the hierarchy, causing deep recursion. This could happen
+ * with text widgets, or more likely with the labelframe
+ * widget. With these widgets it is possible, even likely, that a
+ * -font'ed widget (text or labelframe) will not be a leaf node, but
* will instead have many descendants. If this is ever found to cause a
* performance problem, it may be worth investigating an iterative version
* of the code below.