diff options
author | Michele Calgaro <[email protected]> | 2024-01-05 10:33:17 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-01-05 10:33:17 +0900 |
commit | 1bc48a6ae2706e13093955e8181ac2f58a7ec3ac (patch) | |
tree | 1d67fedde5ab6603080c8c786d55a1fcb44c45c4 /src/filterbar.cpp | |
parent | 71d014f5e8c8816163fdfdf63fb20e73cd1870e4 (diff) | |
download | dolphin-1bc48a6ae2706e13093955e8181ac2f58a7ec3ac.tar.gz dolphin-1bc48a6ae2706e13093955e8181ac2f58a7ec3ac.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src/filterbar.cpp')
-rw-r--r-- | src/filterbar.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/filterbar.cpp b/src/filterbar.cpp index 1db8835..8cd63bb 100644 --- a/src/filterbar.cpp +++ b/src/filterbar.cpp @@ -54,11 +54,11 @@ FilterBar::FilterBar(TQWidget *parent, const char *name) : layout->addWidget(m_close); layout->addSpacing(gap); - connect(m_filterInput, TQT_SIGNAL(textChanged(const TQString&)), - this, TQT_SIGNAL(signalFilterChanged(const TQString&))); - connect(m_close, TQT_SIGNAL(clicked()), this, TQT_SLOT(hide())); - connect(m_close, TQT_SIGNAL(clicked()), - &Dolphin::mainWin(), TQT_SLOT(slotShowFilterBarChanged())); + connect(m_filterInput, TQ_SIGNAL(textChanged(const TQString&)), + this, TQ_SIGNAL(signalFilterChanged(const TQString&))); + connect(m_close, TQ_SIGNAL(clicked()), this, TQ_SLOT(hide())); + connect(m_close, TQ_SIGNAL(clicked()), + &Dolphin::mainWin(), TQ_SLOT(slotShowFilterBarChanged())); } FilterBar::~FilterBar() |