diff options
Diffstat (limited to 'kplato/kptpart.cpp')
-rw-r--r-- | kplato/kptpart.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kplato/kptpart.cpp b/kplato/kptpart.cpp index 53ed107f..ddebf0f0 100644 --- a/kplato/kptpart.cpp +++ b/kplato/kptpart.cpp @@ -67,13 +67,13 @@ Part::Part(TQWidget *parentWidget, const char *widgetName, delete m_project; m_project = new Project(); // after config is loaded - connect(m_commandHistory, TQT_SIGNAL(commandExecuted()), TQT_SLOT(slotCommandExecuted())); - connect(m_commandHistory, TQT_SIGNAL(documentRestored()), TQT_SLOT(slotDocumentRestored())); + connect(m_commandHistory, TQ_SIGNAL(commandExecuted()), TQ_SLOT(slotCommandExecuted())); + connect(m_commandHistory, TQ_SIGNAL(documentRestored()), TQ_SLOT(slotDocumentRestored())); //FIXME the following is really dirty, we should make KPlato::Context a real class // with getter and setter and signals when content changes, thus we can keep track TQTimer* timer = new TQTimer(this,"context update timer"); - connect(timer,TQT_SIGNAL(timeout()),this,TQT_SLOT(slotCopyContextFromView())); + connect(timer,TQ_SIGNAL(timeout()),this,TQ_SLOT(slotCopyContextFromView())); timer->start(500); } @@ -147,7 +147,7 @@ bool Part::initDoc(InitDocFlags flags, TQWidget* parentWidget) { KoView *Part::createViewInstance(TQWidget *parent, const char *name) { m_view = new View(this, parent, name); - connect(m_view,TQT_SIGNAL(destroyed()),this,TQT_SLOT(slotViewDestroyed())); + connect(m_view,TQ_SIGNAL(destroyed()),this,TQ_SLOT(slotViewDestroyed())); // If there is a project dialog this should be deleted so it will // use the m_view as parent. If the dialog will be needed again, |