summaryrefslogtreecommitdiffstats
path: root/src/app/metaedit.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/app/metaedit.cpp')
-rw-r--r--src/app/metaedit.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/app/metaedit.cpp b/src/app/metaedit.cpp
index d757ad5..e7da66e 100644
--- a/src/app/metaedit.cpp
+++ b/src/app/metaedit.cpp
@@ -38,12 +38,12 @@ MetaEdit::MetaEdit(TQWidget *parent, Document *gvp, const char *name)
{
mCommentEdit=new TQTextEdit(this);
mCommentEdit->installEventFilter(this);
- connect(mCommentEdit, TQT_SIGNAL(modificationChanged(bool)),
- this, TQT_SLOT(setModified(bool)));
- connect(mDocument,TQT_SIGNAL(loaded(const KURL&)),
- this,TQT_SLOT(updateContent()) );
- connect(mCommentEdit, TQT_SIGNAL(textChanged()),
- this, TQT_SLOT(updateDoc()) );
+ connect(mCommentEdit, TQ_SIGNAL(modificationChanged(bool)),
+ this, TQ_SLOT(setModified(bool)));
+ connect(mDocument,TQ_SIGNAL(loaded(const KURL&)),
+ this,TQ_SLOT(updateContent()) );
+ connect(mCommentEdit, TQ_SIGNAL(textChanged()),
+ this, TQ_SLOT(updateDoc()) );
updateContent();
mCommentEdit->setMinimumHeight(int (mCommentEdit->fontMetrics().height() * 1.5) );
}