summaryrefslogtreecommitdiffstats
path: root/tdecachegrind/tdecachegrind/callgraphview.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tdecachegrind/tdecachegrind/callgraphview.cpp')
-rw-r--r--tdecachegrind/tdecachegrind/callgraphview.cpp24
1 files changed, 12 insertions, 12 deletions
diff --git a/tdecachegrind/tdecachegrind/callgraphview.cpp b/tdecachegrind/tdecachegrind/callgraphview.cpp
index 76d62260..cc3baee7 100644
--- a/tdecachegrind/tdecachegrind/callgraphview.cpp
+++ b/tdecachegrind/tdecachegrind/callgraphview.cpp
@@ -1391,12 +1391,12 @@ CallGraphView::CallGraphView(TraceItemView* parentView,
setFocusPolicy(TQWidget::StrongFocus);
setBackgroundMode(TQt::NoBackground);
- connect(this, TQT_SIGNAL(contentsMoving(int,int)),
- this, TQT_SLOT(contentsMovingSlot(int,int)));
- connect(_completeView, TQT_SIGNAL(zoomRectMoved(int,int)),
- this, TQT_SLOT(zoomRectMoved(int,int)));
- connect(_completeView, TQT_SIGNAL(zoomRectMoveFinished()),
- this, TQT_SLOT(zoomRectMoveFinished()));
+ connect(this, TQ_SIGNAL(contentsMoving(int,int)),
+ this, TQ_SLOT(contentsMovingSlot(int,int)));
+ connect(_completeView, TQ_SIGNAL(zoomRectMoved(int,int)),
+ this, TQ_SLOT(zoomRectMoved(int,int)));
+ connect(_completeView, TQ_SIGNAL(zoomRectMoveFinished()),
+ this, TQ_SLOT(zoomRectMoveFinished()));
TQWhatsThis::add( this, whatsThis() );
@@ -1405,8 +1405,8 @@ CallGraphView::CallGraphView(TraceItemView* parentView,
_renderProcess = 0;
_prevSelectedNode = 0;
- connect(&_renderTimer, TQT_SIGNAL(timeout()),
- this, TQT_SLOT(showRenderWarning()));
+ connect(&_renderTimer, TQ_SIGNAL(timeout()),
+ this, TQ_SLOT(showRenderWarning()));
}
CallGraphView::~CallGraphView()
@@ -1854,10 +1854,10 @@ void CallGraphView::refresh()
_renderProcess->addArgument(_exporter.filename());
_renderProcess->addArgument( "-Tplain" );
- connect( _renderProcess, TQT_SIGNAL(readyReadStdout()),
- this, TQT_SLOT(readDotOutput()) );
- connect( _renderProcess, TQT_SIGNAL(processExited()),
- this, TQT_SLOT(dotExited()) );
+ connect( _renderProcess, TQ_SIGNAL(readyReadStdout()),
+ this, TQ_SLOT(readDotOutput()) );
+ connect( _renderProcess, TQ_SIGNAL(processExited()),
+ this, TQ_SLOT(dotExited()) );
if (1) kdDebug() << "Running '"
<< _renderProcess->arguments().join(" ")