summaryrefslogtreecommitdiffstats
path: root/libkdepim/designerfields.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libkdepim/designerfields.cpp')
-rw-r--r--libkdepim/designerfields.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/libkdepim/designerfields.cpp b/libkdepim/designerfields.cpp
index ba78df0e..5569c258 100644
--- a/libkdepim/designerfields.cpp
+++ b/libkdepim/designerfields.cpp
@@ -50,7 +50,7 @@ DesignerFields::DesignerFields( const TQString &uiFile, TQWidget *parent,
void DesignerFields::initGUI( const TQString &uiFile )
{
- TQVBoxLayout *layout = new TQVBoxLayout( this );
+ TQVBoxLayout *tqlayout = new TQVBoxLayout( this );
TQWidget *wdg = TQWidgetFactory::create( uiFile, 0, this );
if ( !wdg ) {
@@ -61,7 +61,7 @@ void DesignerFields::initGUI( const TQString &uiFile )
mTitle = wdg->caption();
mIdentifier = wdg->name();
- layout->addWidget( wdg );
+ tqlayout->addWidget( wdg );
TQObjectList *list = wdg->queryList( "TQWidget" );
TQObjectListIt it( *list );
@@ -78,7 +78,7 @@ void DesignerFields::initGUI( const TQString &uiFile )
<< "KDatePicker";
while ( it.current() ) {
- if ( allowedTypes.contains( it.current()->className() ) ) {
+ if ( allowedTypes.tqcontains( it.current()->className() ) ) {
TQString name = it.current()->name();
if ( name.startsWith( "X_" ) ) {
name = name.mid( 2 );
@@ -154,13 +154,13 @@ void DesignerFields::load( DesignerFields::Storage *storage )
wdg->setChecked( false );
} else if ( widIt.data()->inherits( "QDateTimeEdit" ) ) {
QDateTimeEdit *wdg = static_cast<QDateTimeEdit*>( widIt.data() );
- wdg->setDateTime( TQDateTime::currentDateTime() );
+ wdg->setDateTime( TQDateTime::tqcurrentDateTime() );
} else if ( widIt.data()->inherits( "KDateTimeWidget" ) ) {
KDateTimeWidget *wdg = static_cast<KDateTimeWidget*>( widIt.data() );
- wdg->setDateTime( TQDateTime::currentDateTime() );
+ wdg->setDateTime( TQDateTime::tqcurrentDateTime() );
} else if ( widIt.data()->inherits( "KDatePicker" ) ) {
KDatePicker *wdg = static_cast<KDatePicker*>( widIt.data() );
- wdg->setDate( TQDate::currentDate() );
+ wdg->setDate( TQDate::tqcurrentDate() );
} else if ( widIt.data()->inherits( "TQComboBox" ) ) {
TQComboBox *wdg = static_cast<TQComboBox*>( widIt.data() );
wdg->setCurrentItem( 0 );