summaryrefslogtreecommitdiffstats
path: root/src/kile/quickpreview.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/kile/quickpreview.cpp')
-rw-r--r--src/kile/quickpreview.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/kile/quickpreview.cpp b/src/kile/quickpreview.cpp
index 287a227..e8d7190 100644
--- a/src/kile/quickpreview.cpp
+++ b/src/kile/quickpreview.cpp
@@ -273,7 +273,7 @@ bool QuickPreview::run(const TQString &text,const TQString &textfilename,int sta
if ( m_ki->toolManager()->run(latex) != KileTool::Running )
return false;
- connect(latex, TQT_SIGNAL(destroyed()), this, TQT_SLOT(toolDestroyed()));
+ connect(latex, TQ_SIGNAL(destroyed()), this, TQ_SLOT(toolDestroyed()));
m_running++;
// dvips
@@ -284,14 +284,14 @@ bool QuickPreview::run(const TQString &text,const TQString &textfilename,int sta
if ( m_ki->toolManager()->run(dvips,previewlist[pvDvipsCfg]) != KileTool::Running )
return false;
- connect(dvips, TQT_SIGNAL(destroyed()), this, TQT_SLOT(toolDestroyed()));
+ connect(dvips, TQ_SIGNAL(destroyed()), this, TQ_SLOT(toolDestroyed()));
m_running++;
}
// viewer
if ( viewer )
{
- connect(viewer, TQT_SIGNAL(destroyed()), this, TQT_SLOT(toolDestroyed()));
+ connect(viewer, TQ_SIGNAL(destroyed()), this, TQ_SLOT(toolDestroyed()));
viewer->setSource( filepath + previewlist[pvExtension] );
viewer->setQuickie();
if ( m_ki->toolManager()->run(viewer,previewlist[pvViewerCfg]) != KileTool::Running )