summaryrefslogtreecommitdiffstats
path: root/kdevdesigner
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-03-07 21:20:21 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-03-07 21:20:21 -0600
commit143fbfa76907357bb86e0daa9fc47065ca8cf65d (patch)
treec1b9c83f36c87ad1e2e8b739901b1637786774d1 /kdevdesigner
parente80643754b9c67298520be1ac90676e938d58d64 (diff)
downloadtdevelop-143fbfa76907357bb86e0daa9fc47065ca8cf65d.tar.gz
tdevelop-143fbfa76907357bb86e0daa9fc47065ca8cf65d.zip
Rename additional members for tqt3
Diffstat (limited to 'kdevdesigner')
-rw-r--r--kdevdesigner/uilib/qwidgetfactory.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/kdevdesigner/uilib/qwidgetfactory.cpp b/kdevdesigner/uilib/qwidgetfactory.cpp
index e2511664..56649616 100644
--- a/kdevdesigner/uilib/qwidgetfactory.cpp
+++ b/kdevdesigner/uilib/qwidgetfactory.cpp
@@ -850,7 +850,7 @@ void TQWidgetFactory::inputItem( const UibStrTable& strings, TQDataStream& in,
if ( parent != 0 ) {
if ( parent->inherits(TQCOMBOBOX_OBJECT_NAME_STRING) ||
parent->inherits(TQLISTBOX_OBJECT_NAME_STRING) ) {
- TQListBox *listBox = (TQListBox *) parent->qt_cast( TQLISTBOX_OBJECT_NAME_STRING );
+ TQListBox *listBox = (TQListBox *) parent->tqt_cast( TQLISTBOX_OBJECT_NAME_STRING );
if ( listBox == 0 )
listBox = ((TQComboBox *) parent)->listBox();
@@ -1219,7 +1219,7 @@ TQWidget *TQWidgetFactory::createFromUibFile( TQDataStream& in,
unpackUInt16( in, labelNo );
unpackUInt16( in, buddyNo );
TQLabel *label =
- (TQLabel *) objects[labelNo]->qt_cast( TQLABEL_OBJECT_NAME_STRING );
+ (TQLabel *) objects[labelNo]->tqt_cast( TQLABEL_OBJECT_NAME_STRING );
if ( label != 0 )
label->setBuddy( (TQWidget *) objects[buddyNo] );
} while ( !END_OF_BLOCK() );