summaryrefslogtreecommitdiffstats
path: root/src/gvcore/bcgdialog.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-30 16:28:59 +0900
commit97ea83f8b23cc80320874b97b671c736a83c378a (patch)
tree8da6950abf3ecb5696ffd969bac30d6e05ce9620 /src/gvcore/bcgdialog.cpp
parent831670cd1aa76b314b447cfa2d9c71603cbbf43e (diff)
downloadgwenview-97ea83f8b23cc80320874b97b671c736a83c378a.tar.gz
gwenview-97ea83f8b23cc80320874b97b671c736a83c378a.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/gvcore/bcgdialog.cpp')
-rw-r--r--src/gvcore/bcgdialog.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/gvcore/bcgdialog.cpp b/src/gvcore/bcgdialog.cpp
index c05869b..ccecdfb 100644
--- a/src/gvcore/bcgdialog.cpp
+++ b/src/gvcore/bcgdialog.cpp
@@ -48,15 +48,15 @@ BCGDialog::BCGDialog(ImageView* view)
d->mView=view;
d->mContent=new BCGDialogBase(this);
setMainWidget(d->mContent);
- connect(d->mContent->mBSlider, TQT_SIGNAL(valueChanged(int)),
- view, TQT_SLOT(setBrightness(int)) );
- connect(d->mContent->mCSlider, TQT_SIGNAL(valueChanged(int)),
- view, TQT_SLOT(setContrast(int)) );
- connect(d->mContent->mGSlider, TQT_SIGNAL(valueChanged(int)),
- view, TQT_SLOT(setGamma(int)) );
+ connect(d->mContent->mBSlider, TQ_SIGNAL(valueChanged(int)),
+ view, TQ_SLOT(setBrightness(int)) );
+ connect(d->mContent->mCSlider, TQ_SIGNAL(valueChanged(int)),
+ view, TQ_SLOT(setContrast(int)) );
+ connect(d->mContent->mGSlider, TQ_SIGNAL(valueChanged(int)),
+ view, TQ_SLOT(setGamma(int)) );
- connect(view, TQT_SIGNAL(bcgChanged()),
- this, TQT_SLOT(updateFromImageView()) );
+ connect(view, TQ_SIGNAL(bcgChanged()),
+ this, TQ_SLOT(updateFromImageView()) );
}