diff options
| author | 2009-08-06 17:56:43 +0000 | |
|---|---|---|
| committer | 2009-08-06 17:56:43 +0000 | |
| commit | 5d09651e5664c3c875fe4b32acdc84e207ffd243 (patch) | |
| tree | 8fdd73f929a5d9ec3ef110607c38806a3bc8a4e9 /src/modules/editor | |
| parent | reverted part of r3395 (fixes #511), LIB_SUFFIX is the common flag name for c... (diff) | |
| download | KVIrc-5d09651e5664c3c875fe4b32acdc84e207ffd243.tar.gz KVIrc-5d09651e5664c3c875fe4b32acdc84e207ffd243.tar.bz2 KVIrc-5d09651e5664c3c875fe4b32acdc84e207ffd243.zip | |
[KVIrc] (trunk) Fixed spelling mistakes found by Lintian.
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@3402 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/editor')
| -rw-r--r-- | src/modules/editor/scripteditor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/editor/scripteditor.cpp b/src/modules/editor/scripteditor.cpp index daa159326..349eeff03 100644 --- a/src/modules/editor/scripteditor.cpp +++ b/src/modules/editor/scripteditor.cpp @@ -336,7 +336,7 @@ void KviScriptEditorWidget::keyPressEvent(QKeyEvent * e) } // Adapted from QT4 QCompleter example bool isShortcut = ((e->modifiers() & Qt::ControlModifier) && e->key() == Qt::Key_E); // CTRL+E - if (!m_pCompleter || !isShortcut) // dont process the shortcut when we have a completer + if (!m_pCompleter || !isShortcut) // don't process the shortcut when we have a completer QTextEdit::keyPressEvent(e); const bool ctrlOrShift = e->modifiers() & (Qt::ControlModifier | Qt::ShiftModifier); if (!m_pCompleter || (ctrlOrShift && e->text().isEmpty())) |
