summaryrefslogtreecommitdiffstats
path: root/kitchensync
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2023-11-09 10:37:12 +0900
committerMichele Calgaro <[email protected]>2023-11-10 09:18:39 +0900
commit7a712e6185fe1086345a4ad970291444548f60a2 (patch)
tree6dd0b17b51cc004a16901d02e791fb031d927d51 /kitchensync
parent8a66634debeb3242ec542056469b6e07d5427968 (diff)
downloadtdepim-7a712e6185fe1086345a4ad970291444548f60a2.tar.gz
tdepim-7a712e6185fe1086345a4ad970291444548f60a2.zip
Replace Qt with TQt
Signed-off-by: Michele Calgaro <[email protected]> (cherry picked from commit 98876ba8c52c0fc2f38c258476bc9637f055d576)
Diffstat (limited to 'kitchensync')
-rw-r--r--kitchensync/src/configguipalm.cpp2
-rw-r--r--kitchensync/src/kwidgetlist.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/kitchensync/src/configguipalm.cpp b/kitchensync/src/configguipalm.cpp
index ee85ba294..124700cac 100644
--- a/kitchensync/src/configguipalm.cpp
+++ b/kitchensync/src/configguipalm.cpp
@@ -167,7 +167,7 @@ void ConfigGuiPalm::initGUI()
gridLayout = new TQGridLayout( connectionLayout, 1, 2, KDialog::spacingHint() );
gridLayout->setMargin( KDialog::marginHint() );
- TQButtonGroup *buttonGroup = new TQButtonGroup( 1, Qt::Horizontal, connectionWidget );
+ TQButtonGroup *buttonGroup = new TQButtonGroup( 1, TQt::Horizontal, connectionWidget );
buttonGroup->setExclusive( true );
buttonGroup->setFrameStyle( TQFrame::NoFrame );
mSyncAlways = new TQRadioButton( i18n( "Sync Anyway" ), buttonGroup );
diff --git a/kitchensync/src/kwidgetlist.cpp b/kitchensync/src/kwidgetlist.cpp
index f26f8d68e..059b0c19e 100644
--- a/kitchensync/src/kwidgetlist.cpp
+++ b/kitchensync/src/kwidgetlist.cpp
@@ -192,7 +192,7 @@ bool KWidgetList::eventFilter( TQObject *object, TQEvent *event )
{
if ( event->type() == TQEvent::MouseButtonPress ) {
TQMouseEvent *mouseEvent = TQT_TQMOUSEEVENT( event );
- if ( mouseEvent->button() & Qt::LeftButton ) {
+ if ( mouseEvent->button() & TQt::LeftButton ) {
TQValueList<KWidgetListItem*>::Iterator it;
for ( it = d->mItems.begin(); it != d->mItems.end(); ++it ) {
if ( TQT_BASE_OBJECT(*it) == TQT_BASE_OBJECT(object) ) {