summaryrefslogtreecommitdiffstats
path: root/src/widgets/qdatetimeedit.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2023-12-27 19:25:43 +0900
committerMichele Calgaro <[email protected]>2023-12-31 22:16:03 +0900
commitecca365daf06c711cf30f93f4c773dabf5642790 (patch)
tree0b2f6780f60fd7eb35c84cc899e7d51db189d67d /src/widgets/qdatetimeedit.cpp
parent1c30858477bcf3a4c74866d9a3d26f57753dd36a (diff)
downloadtqt3-ecca365daf06c711cf30f93f4c773dabf5642790.tar.gz
tqt3-ecca365daf06c711cf30f93f4c773dabf5642790.zip
Rename METHOD, SIGNAL, SLOT to TQ_METHOD, TQ_SIGNAL, TQ_SLOT
Signed-off-by: Michele Calgaro <[email protected]> (cherry picked from commit fb401a891f1b426e9419c0cb16403df407138611)
Diffstat (limited to 'src/widgets/qdatetimeedit.cpp')
-rw-r--r--src/widgets/qdatetimeedit.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/widgets/qdatetimeedit.cpp b/src/widgets/qdatetimeedit.cpp
index 2989678ac..6454bdf49 100644
--- a/src/widgets/qdatetimeedit.cpp
+++ b/src/widgets/qdatetimeedit.cpp
@@ -952,10 +952,10 @@ void TQDateEdit::init()
d->ed = new TQDateTimeEditor( this, d->controls, "date editor" );
d->controls->setEditWidget( d->ed );
setFocusProxy( d->ed );
- connect( d->controls, SIGNAL( stepUpPressed() ), SLOT( stepUp() ) );
- connect( d->controls, SIGNAL( stepDownPressed() ), SLOT( stepDown() ) );
- connect( this, SIGNAL( valueChanged(const TQDate&) ),
- SLOT( updateButtons() ) );
+ connect( d->controls, TQ_SIGNAL( stepUpPressed() ), TQ_SLOT( stepUp() ) );
+ connect( d->controls, TQ_SIGNAL( stepDownPressed() ), TQ_SLOT( stepDown() ) );
+ connect( this, TQ_SIGNAL( valueChanged(const TQDate&) ),
+ TQ_SLOT( updateButtons() ) );
d->ed->appendSection( TQNumberSection( 0,4 ) );
d->ed->appendSection( TQNumberSection( 5,7 ) );
d->ed->appendSection( TQNumberSection( 8,10 ) );
@@ -1854,8 +1854,8 @@ void TQTimeEdit::init()
d->ed = new TQDateTimeEditor( this, d->controls, "time edit base" );
d->controls->setEditWidget( d->ed );
setFocusProxy( d->ed );
- connect( d->controls, SIGNAL( stepUpPressed() ), SLOT( stepUp() ) );
- connect( d->controls, SIGNAL( stepDownPressed() ), SLOT( stepDown() ) );
+ connect( d->controls, TQ_SIGNAL( stepUpPressed() ), TQ_SLOT( stepUp() ) );
+ connect( d->controls, TQ_SIGNAL( stepDownPressed() ), TQ_SLOT( stepDown() ) );
d->ed->appendSection( TQNumberSection( 0,0, TRUE, 0 ) );
d->ed->appendSection( TQNumberSection( 0,0, TRUE, 1 ) );
@@ -2728,10 +2728,10 @@ void TQDateTimeEdit::init()
de = new TQDateEdit( this, "qt_datetime_dateedit" );
te = new TQTimeEdit( this, "qt_datetime_timeedit" );
d->adv = FALSE;
- connect( de, SIGNAL( valueChanged(const TQDate&) ),
- this, SLOT( newValue(const TQDate&) ) );
- connect( te, SIGNAL( valueChanged(const TQTime&) ),
- this, SLOT( newValue(const TQTime&) ) );
+ connect( de, TQ_SIGNAL( valueChanged(const TQDate&) ),
+ this, TQ_SLOT( newValue(const TQDate&) ) );
+ connect( te, TQ_SIGNAL( valueChanged(const TQTime&) ),
+ this, TQ_SLOT( newValue(const TQTime&) ) );
setFocusProxy( de );
setSizePolicy( TQSizePolicy::Minimum, TQSizePolicy::Fixed );
}