summaryrefslogtreecommitdiffstats
path: root/src/app/metaedit.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-12-30 16:28:59 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-12-31 22:26:22 +0900
commitf476b77d1dda2e0e45cdf065b1907215c90fccd6 (patch)
treedec65915640fe8ca8f67f9c490575d939b89d5df /src/app/metaedit.cpp
parent5eb453b778dba31ee1c5956ca9c9d6483c1cd620 (diff)
downloadgwenview-f476b77d.tar.gz
gwenview-f476b77d.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 97ea83f8b23cc80320874b97b671c736a83c378a)
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) );
}