diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-30 16:28:59 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-31 22:26:22 +0900 |
commit | f476b77d1dda2e0e45cdf065b1907215c90fccd6 (patch) | |
tree | dec65915640fe8ca8f67f9c490575d939b89d5df /src/gvcore/bcgdialog.cpp | |
parent | 5eb453b778dba31ee1c5956ca9c9d6483c1cd620 (diff) | |
download | gwenview-f476b77d1dda2e0e45cdf065b1907215c90fccd6.tar.gz gwenview-f476b77d1dda2e0e45cdf065b1907215c90fccd6.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/gvcore/bcgdialog.cpp')
-rw-r--r-- | src/gvcore/bcgdialog.cpp | 16 |
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()) ); } |