summaryrefslogtreecommitdiffstats
path: root/smb4k/core/smb4kprint.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'smb4k/core/smb4kprint.cpp')
-rw-r--r--smb4k/core/smb4kprint.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/smb4k/core/smb4kprint.cpp b/smb4k/core/smb4kprint.cpp
index 09d042e..a9108e1 100644
--- a/smb4k/core/smb4kprint.cpp
+++ b/smb4k/core/smb4kprint.cpp
@@ -59,14 +59,14 @@ Smb4KPrint::Smb4KPrint( TQObject *parent, const char *name ) : TQObject( parent,
m_working = false;
- connect( m_proc, TQT_SIGNAL( receivedStdout( TDEProcess *, char *, int ) ),
- this, TQT_SLOT( slotReceivedStdout( TDEProcess *, char *, int ) ) );
+ connect( m_proc, TQ_SIGNAL( receivedStdout( TDEProcess *, char *, int ) ),
+ this, TQ_SLOT( slotReceivedStdout( TDEProcess *, char *, int ) ) );
- connect( m_proc, TQT_SIGNAL( receivedStderr( TDEProcess *, char *, int ) ),
- this, TQT_SLOT( slotReceivedStderr( TDEProcess *, char *, int ) ) );
+ connect( m_proc, TQ_SIGNAL( receivedStderr( TDEProcess *, char *, int ) ),
+ this, TQ_SLOT( slotReceivedStderr( TDEProcess *, char *, int ) ) );
- connect( m_proc, TQT_SIGNAL( processExited( TDEProcess * ) ),
- this, TQT_SLOT( slotProcessExited( TDEProcess * ) ) );
+ connect( m_proc, TQ_SIGNAL( processExited( TDEProcess * ) ),
+ this, TQ_SLOT( slotProcessExited( TDEProcess * ) ) );
}
@@ -289,7 +289,7 @@ void Smb4KPrint::printText()
/////////////////////////////////////////////////////////////////////////////
-// TQT_SLOT IMPLEMENTATIONS
+// SLOT IMPLEMENTATIONS
/////////////////////////////////////////////////////////////////////////////
void Smb4KPrint::slotReceivedStdout( TDEProcess *, char *buf, int len )
@@ -333,7 +333,7 @@ void Smb4KPrint::slotProcessExited( TDEProcess * )
if ( passwordHandler()->askpass( m_info->workgroup(), m_info->host(), m_info->printer(), state ) )
{
retry = true;
- TQTimer::singleShot( 50, this, TQT_SLOT( slotRetry() ) );
+ TQTimer::singleShot( 50, this, TQ_SLOT( slotRetry() ) );
}
}
else