summaryrefslogtreecommitdiffstats
path: root/examples/tools/customcompleter
diff options
context:
space:
mode:
authorJerome Pasion <jerome.pasion@nokia.com>2010-07-29 14:59:55 +0200
committerJerome Pasion <jerome.pasion@nokia.com>2010-07-29 14:59:55 +0200
commit5bdb85e3b21bcf624eb1830aa32d027e0c6870fe (patch)
treee3193ee6947a112818e4a00adb54bc598ed142f5 /examples/tools/customcompleter
parente98ec548d4f7b0558742014933457f756bdd8bf1 (diff)
Fixed spelling mistakes in documented functions, classes, etc. Part of QTBUG-11938 and QTBUG-10801
Diffstat (limited to 'examples/tools/customcompleter')
-rw-r--r--examples/tools/customcompleter/textedit.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/tools/customcompleter/textedit.cpp b/examples/tools/customcompleter/textedit.cpp
index 5467e53f27..77699e0c90 100644
--- a/examples/tools/customcompleter/textedit.cpp
+++ b/examples/tools/customcompleter/textedit.cpp
@@ -141,7 +141,7 @@ void TextEdit::keyPressEvent(QKeyEvent *e)
}
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]