diff options
Diffstat (limited to 'clients/tde/src/app/views/instrumentview.cpp')
-rw-r--r-- | clients/tde/src/app/views/instrumentview.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/clients/tde/src/app/views/instrumentview.cpp b/clients/tde/src/app/views/instrumentview.cpp index 88f2329..b0ca660 100644 --- a/clients/tde/src/app/views/instrumentview.cpp +++ b/clients/tde/src/app/views/instrumentview.cpp @@ -46,14 +46,14 @@ void InstrumentView::init() { if (!factory) { KMessageBox::error( this, i18n("TDE could not find the %1 part, or the %2 part could not be started.").arg(m_libraryName).arg(m_libraryName) ); - TQTimer::singleShot(0, this, SLOT(close())); + TQTimer::singleShot(0, this, TQ_SLOT(close())); } else { - m_instrumentPart = (InstrumentPart *)factory->create(TQT_TQOBJECT(this), "part", "KParts::RemoteInstrumentPart"); + m_instrumentPart = (InstrumentPart *)factory->create(this, "part", "KParts::RemoteInstrumentPart"); m_instrumentPart->setMDIMainForm(m_mainForm); setIcon(SmallIcon(m_libraryName)); - connect(m_instrumentPart, SIGNAL(statusMessageSet(const TQString&)), this, SLOT(setStatusMessage(const TQString&))); - connect(m_instrumentPart, SIGNAL(usingFixedSizeChanged(bool)), this, SLOT(setUsingFixedSize(bool))); + connect(m_instrumentPart, TQ_SIGNAL(statusMessageSet(const TQString&)), this, TQ_SLOT(setStatusMessage(const TQString&))); + connect(m_instrumentPart, TQ_SIGNAL(usingFixedSizeChanged(bool)), this, TQ_SLOT(setUsingFixedSize(bool))); TQWidget *childPartWidget = m_instrumentPart->widget(); if (childPartWidget) { childPartWidget->installEventFilter(this); @@ -151,7 +151,7 @@ void InstrumentView::connectServer(TQString server) { delete canary; return; } - TQTimer::singleShot(0, this, SLOT(close())); + TQTimer::singleShot(0, this, TQ_SLOT(close())); } } |