summaryrefslogtreecommitdiffstats
path: root/src/gvcore/bcgdialog.cpp
diff options
context:
space:
mode:
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()) );
}