diff options
Diffstat (limited to 'src/widgets/qtoolbar.cpp')
-rw-r--r-- | src/widgets/qtoolbar.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/widgets/qtoolbar.cpp b/src/widgets/qtoolbar.cpp index 518d81c4a..79b13a80b 100644 --- a/src/widgets/qtoolbar.cpp +++ b/src/widgets/qtoolbar.cpp @@ -39,7 +39,7 @@ **********************************************************************/ #include "ntqtoolbar.h" -#ifndef QT_NO_TOOLBAR +#ifndef TQT_NO_TOOLBAR #include "ntqmainwindow.h" #include "ntqtooltip.h" @@ -631,7 +631,7 @@ void TQToolBar::createPopup() continue; } TQWidget *w = (TQWidget*)it.current(); -#ifndef QT_NO_COMBOBOX +#ifndef TQT_NO_COMBOBOX if ( ::tqt_cast<TQComboBox*>(w) ) j = 1; #endif @@ -672,11 +672,11 @@ void TQToolBar::createPopup() d->extensionPopup->setItemChecked( id, b->isOn() ); if ( !b->isEnabled() ) d->extensionPopup->setItemEnabled( id, FALSE ); -#ifndef QT_NO_COMBOBOX +#ifndef TQT_NO_COMBOBOX } else if ( ::tqt_cast<TQComboBox*>(w) ) { TQComboBox *c = (TQComboBox*)w; if ( c->count() != 0 ) { -#ifndef QT_NO_WIDGET_TOPEXTRA +#ifndef TQT_NO_WIDGET_TOPEXTRA TQString s = c->caption(); #else TQString s; @@ -706,7 +706,7 @@ void TQToolBar::createPopup() } } } -#endif //QT_NO_COMBOBOX +#endif //TQT_NO_COMBOBOX } } ++it; |