summaryrefslogtreecommitdiffstats
path: root/kipi-plugins/acquireimages
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-11-06 22:47:41 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-11-07 18:47:51 +0900
commitee8fe2c90471205b32e5abbfe46f5f6d295429a9 (patch)
tree27bb8e644081f92b2707fbbb2a84802102f7614c /kipi-plugins/acquireimages
parent405d2a9eaa23e094d1bdee3ca7ad85841c68fc67 (diff)
downloadkipi-plugins-ee8fe2c90471205b32e5abbfe46f5f6d295429a9.tar.gz
kipi-plugins-ee8fe2c90471205b32e5abbfe46f5f6d295429a9.zip
Replace Qt with TQt
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kipi-plugins/acquireimages')
-rw-r--r--kipi-plugins/acquireimages/acquireimagedialog.cpp6
-rw-r--r--kipi-plugins/acquireimages/screenshotdialog.cpp2
2 files changed, 4 insertions, 4 deletions
diff --git a/kipi-plugins/acquireimages/acquireimagedialog.cpp b/kipi-plugins/acquireimages/acquireimagedialog.cpp
index 40e8e31..6ffc3c1 100644
--- a/kipi-plugins/acquireimages/acquireimagedialog.cpp
+++ b/kipi-plugins/acquireimages/acquireimagedialog.cpp
@@ -226,7 +226,7 @@ void AcquireImageDialog::setupImageOptions(void)
//---------------------------------------------
TQGroupBox * groupBox2 = new TQGroupBox( i18n("Saving Options"), page_setupImageOptions );
- groupBox2->setColumnLayout(0, Qt::Vertical );
+ groupBox2->setColumnLayout(0, TQt::Vertical );
groupBox2->layout()->setSpacing( 6 );
groupBox2->layout()->setMargin( 11 );
TQWhatsThis::add( groupBox2, i18n("<p>The saving options of the target image.") );
@@ -326,7 +326,7 @@ void AcquireImageDialog::setupAlbumsList(void)
//---------------------------------------------
TQGroupBox * groupBox2 = new TQGroupBox( i18n("Album Description"), page_setupAlbumsList );
- groupBox2->setColumnLayout(0, Qt::Vertical );
+ groupBox2->setColumnLayout(0, TQt::Vertical );
groupBox2->layout()->setSpacing( 6 );
groupBox2->layout()->setMargin( 11 );
TQWhatsThis::add( groupBox2, i18n("<p>The description of the current Album in the selection list.") );
@@ -386,7 +386,7 @@ void AcquireImageDialog::slotAlbumSelected( const KURL &url )
{
comments = (*albumIt).comment();
category = (*albumIt).category();
- date = (*albumIt).date().toString( Qt::LocalDate );
+ date = (*albumIt).date().toString( TQt::LocalDate );
items.setNum((*albumIt).images().count());
}
diff --git a/kipi-plugins/acquireimages/screenshotdialog.cpp b/kipi-plugins/acquireimages/screenshotdialog.cpp
index d29ae8d..5b32281 100644
--- a/kipi-plugins/acquireimages/screenshotdialog.cpp
+++ b/kipi-plugins/acquireimages/screenshotdialog.cpp
@@ -301,7 +301,7 @@ bool ScreenGrabDialog::eventFilter( TQObject* o, TQEvent* e)
if ( TQWidget::mouseGrabber() != m_grabber )
return false;
- if ( me->button() == Qt::LeftButton )
+ if ( me->button() == TQt::LeftButton )
slotPerformGrab();
}