examples/tools/customcompleter/textedit.cpp
changeset 37 758a864f9613
parent 30 5dc02b23752f
--- a/examples/tools/customcompleter/textedit.cpp	Fri Sep 17 08:34:18 2010 +0300
+++ b/examples/tools/customcompleter/textedit.cpp	Mon Oct 04 01:19:32 2010 +0300
@@ -141,7 +141,7 @@
     }
 
     bool isShortcut = ((e->modifiers() & Qt::ControlModifier) && e->key() == Qt::Key_E); // CTRL+E
-    if (!c || !isShortcut) // dont process the shortcut when we have a completer
+    if (!c || !isShortcut) // do not process the shortcut when we have a completer
         QTextEdit::keyPressEvent(e);
 //! [7]