diff options
author | Michele Calgaro <[email protected]> | 2023-12-30 16:28:59 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-12-30 16:28:59 +0900 |
commit | 97ea83f8b23cc80320874b97b671c736a83c378a (patch) | |
tree | 8da6950abf3ecb5696ffd969bac30d6e05ce9620 /src/app/metaedit.cpp | |
parent | 831670cd1aa76b314b447cfa2d9c71603cbbf43e (diff) | |
download | gwenview-97ea83f8b23cc80320874b97b671c736a83c378a.tar.gz gwenview-97ea83f8b23cc80320874b97b671c736a83c378a.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src/app/metaedit.cpp')
-rw-r--r-- | src/app/metaedit.cpp | 12 |
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) ); } |