diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-24 10:55:29 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-25 15:17:16 +0900 |
commit | 139b166e1af1efe1cbc0ee2cce6d5534ad042d0e (patch) | |
tree | 85788279f2894f7133ffaac44c5f69eabaec3c3e /kate | |
parent | c19f68bd91790b23163fe787464984018a42a2dc (diff) | |
download | tdebase-139b166e1af1efe1cbc0ee2cce6d5534ad042d0e.tar.gz tdebase-139b166e1af1efe1cbc0ee2cce6d5534ad042d0e.zip |
Replaced various '#define' with actual strings - part 3
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 36f2e08fd382c7042fbd3c8e7708f3ba1b9c9bd7)
Diffstat (limited to 'kate')
-rw-r--r-- | kate/app/katefileselector.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kate/app/katefileselector.cpp b/kate/app/katefileselector.cpp index 65e2fd1e1..67ea67a8b 100644 --- a/kate/app/katefileselector.cpp +++ b/kate/app/katefileselector.cpp @@ -113,14 +113,14 @@ KateFileSelector::KateFileSelector( KateMainWindow *mainWindow, { mActionCollection = new TDEActionCollection( this ); - TQtMsgHandler oldHandler = tqInstallMsgHandler( silenceQToolBar ); + TQtMsgHandler oldHandler = qInstallMsgHandler( silenceQToolBar ); KateFileSelectorToolBarParent *tbp=new KateFileSelectorToolBarParent(this); toolbar = new KateFileSelectorToolBar(tbp); tbp->setToolBar(toolbar); toolbar->setMovingEnabled(false); toolbar->setFlat(true); - tqInstallMsgHandler( oldHandler ); + qInstallMsgHandler( oldHandler ); cmbPath = new KURLComboBox( KURLComboBox::Directories, true, this, "path combo" ); cmbPath->setSizePolicy( TQSizePolicy( TQSizePolicy::Expanding, TQSizePolicy::Fixed )); |