diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-18 16:33:10 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-20 13:34:42 +0900 |
commit | 55b59d3dab104562290c709936de766f8aaa698b (patch) | |
tree | 7d079b3c656f5069abd4333e93a8a1fab53cda5a /src/modules/editor | |
parent | 8bb7372ea107b8292b0de0fa9c3f0273d4f8f46d (diff) | |
download | kvirc-55b59d3dab104562290c709936de766f8aaa698b.tar.gz kvirc-55b59d3dab104562290c709936de766f8aaa698b.zip |
Replace various strings '#define'd in tqtinterface
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 3c626b9f1ad4d0513b8608df1f6c820fd915b466)
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 46bba621..258db5fb 100644 --- a/src/modules/editor/scripteditor.cpp +++ b/src/modules/editor/scripteditor.cpp @@ -249,7 +249,7 @@ void KviScriptEditorWidget::slotFind() void KviScriptEditorWidget::slotReplace() { - KviScriptEditorReplaceDialog *dialog=new KviScriptEditorReplaceDialog(this,tqtr("Find & Repalce")); + KviScriptEditorReplaceDialog *dialog=new KviScriptEditorReplaceDialog(this,tr("Find & Replace")); connect (dialog,TQT_SIGNAL(replaceAll(const TQString &,const TQString &)),m_pParent,TQT_SLOT(slotReplaceAll(const TQString &,const TQString &))); connect (dialog,TQT_SIGNAL(initFind()),m_pParent,TQT_SLOT(slotInitFind())); connect (dialog,TQT_SIGNAL(nextFind(const TQString &)),m_pParent,TQT_SLOT(slotNextFind(const TQString &))); |