diff options
author | Michele Calgaro <[email protected]> | 2024-01-04 10:29:06 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-01-06 19:53:19 +0900 |
commit | 483545c2b890016403048fe55037c58bbdc339ab (patch) | |
tree | 2dac88699fb0c98389e7c87cacca6286984fdab6 /src/fileimporterbibutils.cpp | |
parent | 584744b2c188ef5d2dea7384ee79c4c6e1ba6838 (diff) | |
download | kbibtex-483545c2b890016403048fe55037c58bbdc339ab.tar.gz kbibtex-483545c2b890016403048fe55037c58bbdc339ab.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit 0a7295d1f8d11fd67a215215fa6a3ef1ad0e1b06)
Diffstat (limited to 'src/fileimporterbibutils.cpp')
-rw-r--r-- | src/fileimporterbibutils.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/fileimporterbibutils.cpp b/src/fileimporterbibutils.cpp index 169aa73..ef8f0e8 100644 --- a/src/fileimporterbibutils.cpp +++ b/src/fileimporterbibutils.cpp @@ -127,9 +127,9 @@ namespace BibTeX if ( m_process != NULL ) { m_waiting = true; - connect( m_process, SIGNAL( processExited() ), this, SLOT( wakeUp() ) ); - connect( m_process, SIGNAL( readyReadStdout() ), this, SLOT( slotReadyStdout() ) ); - connect( m_process, SIGNAL( readyReadStderr() ), this, SLOT( slotReadyStderr() ) ); + connect( m_process, TQ_SIGNAL( processExited() ), this, TQ_SLOT( wakeUp() ) ); + connect( m_process, TQ_SIGNAL( readyReadStdout() ), this, TQ_SLOT( slotReadyStdout() ) ); + connect( m_process, TQ_SIGNAL( readyReadStderr() ), this, TQ_SLOT( slotReadyStderr() ) ); m_process->start(); if ( m_process->isRunning() ) @@ -181,9 +181,9 @@ namespace BibTeX m_waiting = true; m_process = new TQProcess( TQStringList::split( ' ', "xml2bib -i utf8 -o utf8 -sk" ) ); - connect( m_process, SIGNAL( processExited() ), this, SLOT( wakeUp() ) ); - connect( m_process, SIGNAL( readyReadStdout() ), this, SLOT( slotReadyStdout() ) ); - connect( m_process, SIGNAL( readyReadStderr() ), this, SLOT( slotReadyStderr() ) ); + connect( m_process, TQ_SIGNAL( processExited() ), this, TQ_SLOT( wakeUp() ) ); + connect( m_process, TQ_SIGNAL( readyReadStdout() ), this, TQ_SLOT( slotReadyStdout() ) ); + connect( m_process, TQ_SIGNAL( readyReadStderr() ), this, TQ_SLOT( slotReadyStderr() ) ); if ( m_process->start() ) { |