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.cpp22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/gvcore/bcgdialog.cpp b/src/gvcore/bcgdialog.cpp
index 9f1486a..58f3149 100644
--- a/src/gvcore/bcgdialog.cpp
+++ b/src/gvcore/bcgdialog.cpp
@@ -21,9 +21,9 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
// Self
#include "bcgdialog.moc"
-// Qt
-#include <qslider.h>
-#include <qvbox.h>
+// TQt
+#include <tqslider.h>
+#include <tqvbox.h>
// KDE
#include <klocale.h>
@@ -49,15 +49,15 @@ BCGDialog::BCGDialog(ImageView* view)
d->mView=view;
d->mContent=new BCGDialogBase(this);
setMainWidget(d->mContent);
- connect(d->mContent->mBSlider, SIGNAL(valueChanged(int)),
- view, SLOT(setBrightness(int)) );
- connect(d->mContent->mCSlider, SIGNAL(valueChanged(int)),
- view, SLOT(setContrast(int)) );
- connect(d->mContent->mGSlider, SIGNAL(valueChanged(int)),
- view, SLOT(setGamma(int)) );
+ 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(view, SIGNAL(bcgChanged()),
- this, SLOT(updateFromImageView()) );
+ connect(view, TQT_SIGNAL(bcgChanged()),
+ this, TQT_SLOT(updateFromImageView()) );
}