summaryrefslogtreecommitdiffstats
path: root/src/widgets/qtoolbar.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-03-06 20:38:40 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-03-06 20:38:40 -0600
commiteb1d1e0dec5720ace27395e290b7093cd68b150d (patch)
tree04a199ef5ea853d86a6f9a44716c0874d41c20f6 /src/widgets/qtoolbar.cpp
parentae8aba1e0f17943046e6bfa889b169f7fc41da0d (diff)
downloadtqt3-eb1d1e0dec5720ace27395e290b7093cd68b150d.tar.gz
tqt3-eb1d1e0dec5720ace27395e290b7093cd68b150d.zip
Automated update from qt3
Diffstat (limited to 'src/widgets/qtoolbar.cpp')
-rw-r--r--src/widgets/qtoolbar.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/widgets/qtoolbar.cpp b/src/widgets/qtoolbar.cpp
index 2a48bf628..b465faffb 100644
--- a/src/widgets/qtoolbar.cpp
+++ b/src/widgets/qtoolbar.cpp
@@ -435,7 +435,7 @@ void TQToolBar::styleChange( TQStyle& )
TQObject *ob = 0;
for ( ob = childs->first(); ob; ob = childs->next() ) {
TQWidget *w = (TQWidget*)ob;
- if ( ::qt_cast<TQToolButton*>(w) || ::qt_cast<TQToolBarSeparator*>(w) )
+ if ( ::tqt_cast<TQToolButton*>(w) || ::tqt_cast<TQToolBarSeparator*>(w) )
w->setStyle( &style() );
}
}
@@ -632,7 +632,7 @@ void TQToolBar::createPopup()
}
TQWidget *w = (TQWidget*)it.current();
#ifndef QT_NO_COMBOBOX
- if ( ::qt_cast<TQComboBox*>(w) )
+ if ( ::tqt_cast<TQComboBox*>(w) )
j = 1;
#endif
hide = FALSE;
@@ -646,7 +646,7 @@ void TQToolBar::createPopup()
}
if ( hide && w->isVisible() ) {
doHide = TRUE;
- if ( ::qt_cast<TQToolButton*>(w) ) {
+ if ( ::tqt_cast<TQToolButton*>(w) ) {
TQToolButton *b = (TQToolButton*)w;
TQString s = b->textLabel();
if ( s.isEmpty() )
@@ -659,7 +659,7 @@ void TQToolBar::createPopup()
d->extensionPopup->setItemChecked( id, b->isOn() );
if ( !b->isEnabled() )
d->extensionPopup->setItemEnabled( id, FALSE );
- } else if ( ::qt_cast<TQButton*>(w) ) {
+ } else if ( ::tqt_cast<TQButton*>(w) ) {
TQButton *b = (TQButton*)w;
TQString s = b->text();
if ( s.isEmpty() )
@@ -673,7 +673,7 @@ void TQToolBar::createPopup()
if ( !b->isEnabled() )
d->extensionPopup->setItemEnabled( id, FALSE );
#ifndef QT_NO_COMBOBOX
- } else if ( ::qt_cast<TQComboBox*>(w) ) {
+ } else if ( ::tqt_cast<TQComboBox*>(w) ) {
TQComboBox *c = (TQComboBox*)w;
if ( c->count() != 0 ) {
#ifndef QT_NO_WIDGET_TOPEXTRA