diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-21 14:20:25 -0600 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2012-06-04 04:36:05 +0200 |
commit | 7e5586b24f4a2924cbf3303e434b941e25e3b4d2 (patch) | |
tree | 3b87ee1c5d17276ec042ea3c06f517167ec1fe14 /ktouch/src/ktouchkeyboardeditor.cpp | |
parent | 3fa570c72df3bf358988b8ce3f019bb7224c380e (diff) | |
download | tdeedu-7e5586b24f4a2924cbf3303e434b941e25e3b4d2.tar.gz tdeedu-7e5586b24f4a2924cbf3303e434b941e25e3b4d2.zip |
Rename obsolete tq methods to standard names
(cherry picked from commit ba6b21419810544e0c8666969d21d72161d9084c)
Diffstat (limited to 'ktouch/src/ktouchkeyboardeditor.cpp')
-rw-r--r-- | ktouch/src/ktouchkeyboardeditor.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ktouch/src/ktouchkeyboardeditor.cpp b/ktouch/src/ktouchkeyboardeditor.cpp index 3e3abf62..40944155 100644 --- a/ktouch/src/ktouchkeyboardeditor.cpp +++ b/ktouch/src/ktouchkeyboardeditor.cpp @@ -133,7 +133,7 @@ void KTouchKeyboardEditor::paintEvent(TQPaintEvent *) { void KTouchKeyboardEditor::transfer_to_dialog() { if (m_currentURL.isEmpty()) { - titleEdit->setText( i18n("untitled keyboard tqlayout") ); + titleEdit->setText( i18n("untitled keyboard layout") ); keyboardCommentEdit->setText(""); } else { @@ -173,7 +173,7 @@ void KTouchKeyboardEditor::transfer_to_dialog() { void KTouchKeyboardEditor::transfer_from_dialog() { m_keyboard.m_title = titleEdit->text(); - if (m_keyboard.m_title.isEmpty()) m_keyboard.m_title = i18n("untitled keyboard tqlayout"); + if (m_keyboard.m_title.isEmpty()) m_keyboard.m_title = i18n("untitled keyboard layout"); m_keyboard.m_comment = keyboardCommentEdit->text(); m_keyboard.m_language = languageEdit->text(); } |