diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-02 11:37:05 +0900 | 
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-06 19:52:23 +0900 | 
| commit | ce3ab44510bc56b6d1e8e25663aedee8f4a0ccd1 (patch) | |
| tree | b6897028e51844a0aeaafefc499fe4c213660b6f /libk3b/projects/k3bgrowisofswriter.cpp | |
| parent | 6a101aa2ef54f02a292d6c28f23e2554a72e2bce (diff) | |
| download | k3b-ce3ab445.tar.gz k3b-ce3ab445.zip | |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 61b79fc39298cb8646cee439dc032d5bf0169063)
Diffstat (limited to 'libk3b/projects/k3bgrowisofswriter.cpp')
| -rw-r--r-- | libk3b/projects/k3bgrowisofswriter.cpp | 38 | 
1 files changed, 19 insertions, 19 deletions
| diff --git a/libk3b/projects/k3bgrowisofswriter.cpp b/libk3b/projects/k3bgrowisofswriter.cpp index ebb26a4..dbbc97a 100644 --- a/libk3b/projects/k3bgrowisofswriter.cpp +++ b/libk3b/projects/k3bgrowisofswriter.cpp @@ -102,20 +102,20 @@ K3bGrowisofsWriter::K3bGrowisofsWriter( K3bDevice::Device* dev, K3bJobHandler* h  {    d = new Private;    d->speedEst = new K3bThroughputEstimator( this ); -  connect( d->speedEst, TQT_SIGNAL(throughput(int)), -	   this, TQT_SLOT(slotThroughput(int)) ); +  connect( d->speedEst, TQ_SIGNAL(throughput(int)), +	   this, TQ_SLOT(slotThroughput(int)) );    d->gh = new K3bGrowisofsHandler( this ); -  connect( d->gh, TQT_SIGNAL(infoMessage(const TQString&, int)), -	   this,TQT_SIGNAL(infoMessage(const TQString&, int)) ); -  connect( d->gh, TQT_SIGNAL(newSubTask(const TQString&)), -	   this, TQT_SIGNAL(newSubTask(const TQString&)) ); -  connect( d->gh, TQT_SIGNAL(buffer(int)), -	   this, TQT_SIGNAL(buffer(int)) ); -  connect( d->gh, TQT_SIGNAL(deviceBuffer(int)), -	   this, TQT_SIGNAL(deviceBuffer(int)) ); -  connect( d->gh, TQT_SIGNAL(flushingCache()), -	   this, TQT_SLOT(slotFlushingCache()) ); +  connect( d->gh, TQ_SIGNAL(infoMessage(const TQString&, int)), +	   this,TQ_SIGNAL(infoMessage(const TQString&, int)) ); +  connect( d->gh, TQ_SIGNAL(newSubTask(const TQString&)), +	   this, TQ_SIGNAL(newSubTask(const TQString&)) ); +  connect( d->gh, TQ_SIGNAL(buffer(int)), +	   this, TQ_SIGNAL(buffer(int)) ); +  connect( d->gh, TQ_SIGNAL(deviceBuffer(int)), +	   this, TQ_SIGNAL(deviceBuffer(int)) ); +  connect( d->gh, TQ_SIGNAL(flushingCache()), +	   this, TQ_SLOT(slotFlushingCache()) );  } @@ -182,9 +182,9 @@ bool K3bGrowisofsWriter::prepareProcess()    //  d->process->setPriority( TDEProcess::PrioHighest );    d->process->setSplitStdout(true);    d->process->setRawStdin(true); -  connect( d->process, TQT_SIGNAL(stderrLine(const TQString&)), this, TQT_SLOT(slotReceivedStderr(const TQString&)) ); -  connect( d->process, TQT_SIGNAL(stdoutLine(const TQString&)), this, TQT_SLOT(slotReceivedStderr(const TQString&)) ); -  connect( d->process, TQT_SIGNAL(processExited(TDEProcess*)), this, TQT_SLOT(slotProcessExited(TDEProcess*)) ); +  connect( d->process, TQ_SIGNAL(stderrLine(const TQString&)), this, TQ_SLOT(slotReceivedStderr(const TQString&)) ); +  connect( d->process, TQ_SIGNAL(stdoutLine(const TQString&)), this, TQ_SLOT(slotReceivedStderr(const TQString&)) ); +  connect( d->process, TQ_SIGNAL(processExited(TDEProcess*)), this, TQ_SLOT(slotProcessExited(TDEProcess*)) );    // @@ -394,8 +394,8 @@ void K3bGrowisofsWriter::start()        if( d->usingRingBuffer ) {  	if( !d->ringBuffer ) {  	  d->ringBuffer = new K3bPipeBuffer( this, this ); -	  connect( d->ringBuffer, TQT_SIGNAL(percent(int)), this, TQT_SIGNAL(buffer(int)) ); -	  connect( d->ringBuffer, TQT_SIGNAL(finished(bool)), this, TQT_SLOT(slotRingBufferFinished(bool)) ); +	  connect( d->ringBuffer, TQ_SIGNAL(percent(int)), this, TQ_SIGNAL(buffer(int)) ); +	  connect( d->ringBuffer, TQ_SIGNAL(finished(bool)), this, TQ_SLOT(slotRingBufferFinished(bool)) );  	}  	d->ringBuffer->writeToFd( d->process->stdinFd() ); @@ -571,9 +571,9 @@ void K3bGrowisofsWriter::slotProcessExited( TDEProcess* p )    else {      emit newSubTask( i18n("Ejecting DVD") );      connect( K3bDevice::eject( burnDevice() ), -	     TQT_SIGNAL(finished(K3bDevice::DeviceHandler*)), +	     TQ_SIGNAL(finished(K3bDevice::DeviceHandler*)),  	     this, -	     TQT_SLOT(slotEjectingFinished(K3bDevice::DeviceHandler*)) ); +	     TQ_SLOT(slotEjectingFinished(K3bDevice::DeviceHandler*)) );    }  } | 
