Skip to content

Commit a578f34

Browse files
committedJun 23, 2014
GUITable typo fixes in comments
1 parent 089fc01 commit a578f34

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎src/guiTable.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -446,7 +446,7 @@ void GUITable::setTable(const TableOptions &options,
446446
}
447447

448448
if (m_has_tree_column) {
449-
// Treeview: convent tree to indent cells on leaf rows
449+
// Treeview: convert tree to indent cells on leaf rows
450450
for (s32 i = 0; i < rowcount; ++i) {
451451
if (i == rowcount-1 || m_rows[i].indent >= m_rows[i+1].indent)
452452
for (s32 j = 0; j < m_rows[i].cellcount; ++j)
@@ -798,7 +798,7 @@ bool GUITable::OnEvent(const SEvent &event)
798798
}
799799

800800
// find the selected item, starting at the current selection
801-
// dont change selection if the key buffer matches the current item
801+
// don't change selection if the key buffer matches the current item
802802
s32 old_selected = m_selected;
803803
s32 start = MYMAX(m_selected, 0);
804804
s32 rowcount = m_visible_rows.size();

0 commit comments

Comments
 (0)
Please sign in to comment.