summaryrefslogtreecommitdiffstats
path: root/src/webqueryieeexplore.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/webqueryieeexplore.cpp
parent584744b2c188ef5d2dea7384ee79c4c6e1ba6838 (diff)
downloadkbibtex-483545c2b890016403048fe55037c58bbdc339ab.tar.gz
kbibtex-483545c2b890016403048fe55037c58bbdc339ab.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/webqueryieeexplore.cpp')
-rw-r--r--src/webqueryieeexplore.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/webqueryieeexplore.cpp b/src/webqueryieeexplore.cpp
index a4fad0d..c444f47 100644
--- a/src/webqueryieeexplore.cpp
+++ b/src/webqueryieeexplore.cpp
@@ -175,8 +175,8 @@ namespace KBibTeX
TDEIO::TransferJob *job = TDEIO::http_post( m_risURL, data.utf8(), false );
job->addMetaData( "content-type", "Content-Type: application/x-www-form-urlencoded" );
- connect( job, SIGNAL( data( TDEIO::Job *, const TQByteArray & ) ), this, SLOT( slotData( TDEIO::Job *, const TQByteArray & ) ) );
- connect( job, SIGNAL( result( TDEIO::Job * ) ), this, SLOT( slotResult( TDEIO::Job * ) ) );
+ connect( job, TQ_SIGNAL( data( TDEIO::Job *, const TQByteArray & ) ), this, TQ_SLOT( slotData( TDEIO::Job *, const TQByteArray & ) ) );
+ connect( job, TQ_SIGNAL( result( TDEIO::Job * ) ), this, TQ_SLOT( slotResult( TDEIO::Job * ) ) );
}
void WebQueryIEEExplore::slotData( TDEIO::Job *, const TQByteArray &data )