summaryrefslogtreecommitdiffstats
path: root/tdeprint/tdeprintd.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tdeprint/tdeprintd.cpp')
-rw-r--r--tdeprint/tdeprintd.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/tdeprint/tdeprintd.cpp b/tdeprint/tdeprintd.cpp
index 754f67c3c..c3e1e474c 100644
--- a/tdeprint/tdeprintd.cpp
+++ b/tdeprint/tdeprintd.cpp
@@ -78,7 +78,7 @@ StatusWindow::StatusWindow(int pid)
l0->addMultiCellWidget(m_label, 0, 0, 1, 2);
l0->addWidget(m_button, 1, 2);
l0->addMultiCellWidget(m_icon, 0, 1, 0, 0);
- connect(m_button, TQT_SIGNAL(clicked()), TQT_SLOT(hide()));
+ connect(m_button, TQ_SIGNAL(clicked()), TQ_SLOT(hide()));
resize(200, 50);
}
@@ -115,8 +115,8 @@ int KDEPrintd::print(const TQString& cmd, const TQStringList& files, bool remfla
TQString command(cmd);
TQRegExp re( "\\$out\\{([^}]*)\\}" );
- connect(proc,TQT_SIGNAL(printTerminated(KPrintProcess*)),TQT_SLOT(slotPrintTerminated(KPrintProcess*)));
- connect(proc,TQT_SIGNAL(printError(KPrintProcess*,const TQString&)),TQT_SLOT(slotPrintError(KPrintProcess*,const TQString&)));
+ connect(proc,TQ_SIGNAL(printTerminated(KPrintProcess*)),TQ_SLOT(slotPrintTerminated(KPrintProcess*)));
+ connect(proc,TQ_SIGNAL(printError(KPrintProcess*,const TQString&)),TQ_SLOT(slotPrintError(KPrintProcess*,const TQString&)));
proc->setCommand( command );
if ( re.search( command ) != -1 )
{
@@ -200,7 +200,7 @@ void KDEPrintd::statusMessage(const TQString& msg, int pid, const TQString& appN
w->setCaption(i18n("Printing Status - %1").arg("(pid="+TQString::number(pid)+")"));
else
w->setCaption(i18n("Printing Status - %1").arg(appName));
- connect(w, TQT_SIGNAL(destroyed()), TQT_SLOT(slotClosed()));
+ connect(w, TQ_SIGNAL(destroyed()), TQ_SLOT(slotClosed()));
w->show();
m_windows.insert(pid, w);
}
@@ -242,7 +242,7 @@ TQString KDEPrintd::requestPassword( const TQString& user, const TQString& host,
req->transaction = callingDcopClient()->beginTransaction();
m_requestsPending.append( req );
if ( m_requestsPending.count() == 1 )
- TQTimer::singleShot( 0, this, TQT_SLOT( processRequest() ) );
+ TQTimer::singleShot( 0, this, TQ_SLOT( processRequest() ) );
return "::";
}
@@ -291,7 +291,7 @@ void KDEPrintd::processRequest()
m_requestsPending.remove( ( unsigned int )0 );
if ( m_requestsPending.count() > 0 )
- TQTimer::singleShot( 0, this, TQT_SLOT( processRequest() ) );
+ TQTimer::singleShot( 0, this, TQ_SLOT( processRequest() ) );
}
void KDEPrintd::initPassword( const TQString& user, const TQString& passwd, const TQString& host, int port )