summaryrefslogtreecommitdiffstats
path: root/src/webquerydblp.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-04 10:29:06 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-06 19:53:19 +0900
commit483545c2b890016403048fe55037c58bbdc339ab (patch)
tree2dac88699fb0c98389e7c87cacca6286984fdab6 /src/webquerydblp.cpp
parent584744b2c188ef5d2dea7384ee79c4c6e1ba6838 (diff)
downloadkbibtex-483545c2.tar.gz
kbibtex-483545c2.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 0a7295d1f8d11fd67a215215fa6a3ef1ad0e1b06)
Diffstat (limited to 'src/webquerydblp.cpp')
-rw-r--r--src/webquerydblp.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/webquerydblp.cpp b/src/webquerydblp.cpp
index ec7001f..2ef8287 100644
--- a/src/webquerydblp.cpp
+++ b/src/webquerydblp.cpp
@@ -71,8 +71,8 @@ namespace KBibTeX
hLayout->addWidget( lineEditQuery );
label->setBuddy( lineEditQuery );
hLayout->addSpacing( KDialog::spacingHint() * 2 );
- connect( clearSearchText, SIGNAL( clicked() ), lineEditQuery, SLOT( clear() ) );
- connect( lineEditQuery, SIGNAL( textChanged( const TQString& ) ), this, SLOT( slotTextChanged( const TQString& ) ) );
+ connect( clearSearchText, TQ_SIGNAL( clicked() ), lineEditQuery, TQ_SLOT( clear() ) );
+ connect( lineEditQuery, TQ_SIGNAL( textChanged( const TQString& ) ), this, TQ_SLOT( slotTextChanged( const TQString& ) ) );
hLayout->setStretchFactor( lineEditQuery, 4 );
TDECompletion *completionQuery = lineEditQuery->completionObject();
@@ -91,8 +91,8 @@ namespace KBibTeX
vLayout->addStretch( 0 );
- connect( lineEditQuery, SIGNAL( returnPressed() ), this, SIGNAL( startSearch() ) );
- connect( lineEditQuery, SIGNAL( returnPressed( const TQString& ) ), completionQuery, SLOT( addItem( const TQString& ) ) );
+ connect( lineEditQuery, TQ_SIGNAL( returnPressed() ), this, TQ_SIGNAL( startSearch() ) );
+ connect( lineEditQuery, TQ_SIGNAL( returnPressed( const TQString& ) ), completionQuery, TQ_SLOT( addItem( const TQString& ) ) );
}
WebQueryDBLP::WebQueryDBLP( TQWidget* parent ): WebQuery( parent )