Fix source typos (heirarchy->hierarchy)

This commit is contained in:
luz paz 2022-04-08 14:09:37 -04:00 committed by Robin Gareus
parent 5bf088e8d1
commit fb55878375
No known key found for this signature in database
GPG key ID: A090BCE02CF57F04
4 changed files with 9 additions and 9 deletions

View file

@ -697,7 +697,7 @@ GtkCanvas::deliver_enter_leave (Duple const & point, int state)
if (_current_item) {
/* no current item, so also send virtual leave events to the
* entire heirarchy for the current item
* entire hierarchy for the current item
*/
for (i = _current_item->parent(); i ; i = i->parent()) {
@ -710,7 +710,7 @@ GtkCanvas::deliver_enter_leave (Duple const & point, int state)
enter_detail = GDK_NOTIFY_UNKNOWN;
/* no current item, so also send virtual enter events to the
* entire heirarchy for the new item
* entire hierarchy for the new item
*/
for (i = _new_current_item->parent(); i ; i = i->parent()) {
@ -723,7 +723,7 @@ GtkCanvas::deliver_enter_leave (Duple const & point, int state)
* inferior ("child") of _new_current_item")
*
* Deliver "virtual" leave notifications to all items in the
* heirarchy between current and new_current.
* hierarchy between current and new_current.
*/
for (i = _current_item->parent(); i && i != _new_current_item; i = i->parent()) {
@ -738,7 +738,7 @@ GtkCanvas::deliver_enter_leave (Duple const & point, int state)
* an inferior ("child") of _current_item")
*
* Deliver "virtual" enter notifications to all items in the
* heirarchy between current and new_current.
* hierarchy between current and new_current.
*/
for (i = _new_current_item->parent(); i && i != _current_item; i = i->parent()) {