diff options
Diffstat (limited to 'kexi/formeditor/form.cpp')
| -rw-r--r-- | kexi/formeditor/form.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kexi/formeditor/form.cpp b/kexi/formeditor/form.cpp index 349210f18..1089b5b34 100644 --- a/kexi/formeditor/form.cpp +++ b/kexi/formeditor/form.cpp @@ -99,8 +99,8 @@ Form::Form(WidgetLibrary* library, const char *name, bool designMode) // Init actions d->collection = new TDEActionCollection(0, this); d->history = new KCommandHistory(d->collection, true); - connect(d->history, TQT_SIGNAL(commandExecuted()), this, TQT_SLOT(slotCommandExecuted())); - connect(d->history, TQT_SIGNAL(documentRestored()), this, TQT_SLOT(slotFormRestored())); + connect(d->history, TQ_SIGNAL(commandExecuted()), this, TQ_SLOT(slotCommandExecuted())); + connect(d->history, TQ_SIGNAL(documentRestored()), this, TQ_SLOT(slotFormRestored())); } Form::~Form() @@ -141,7 +141,7 @@ Form::createToplevel(TQWidget *container, FormWidget *formWidget, const TQCStrin // d->topTree->addModifiedProperty("caption", name()); //m_topTree->addModifiedProperty("icon"); - connect(container, TQT_SIGNAL(destroyed()), this, TQT_SLOT(formDeleted())); + connect(container, TQ_SIGNAL(destroyed()), this, TQ_SLOT(formDeleted())); kdDebug() << "Form::createToplevel(): d->toplevel=" << d->toplevel << endl; } @@ -421,8 +421,8 @@ Form::slotCommandExecuted() emit FormManager::self()->dirty(this, true); d->dirty = true; // because actions text is changed after the commandExecuted() signal is emitted - TQTimer::singleShot(10, this, TQT_SLOT(emitUndoEnabled())); - TQTimer::singleShot(10, this, TQT_SLOT(emitRedoEnabled())); + TQTimer::singleShot(10, this, TQ_SLOT(emitUndoEnabled())); + TQTimer::singleShot(10, this, TQ_SLOT(emitRedoEnabled())); } void |
