Fix unintended renaming

pull/1/head
Darrell Anderson 10 years ago
parent f89e928f95
commit 79c17bd8cd

@ -419,7 +419,7 @@ int MultiTabBarInternal::appendTab( const TQPixmap &pic , int id, const TQString
tab->showActiveTabText( m_showActiveTabTexts ); tab->showActiveTabText( m_showActiveTabTexts );
tab->setVisible( Amarok::config( "BrowserBar" )->readBoolEntry( identifier, true ) ); tab->setVisible( Amarok::config( "BrowserBar" )->readBoolEntry( identifier, true ) );
if ( m_style == MultiTabBar::KONTQSBC ) { if ( m_style == MultiTabBar::KONQSBC ) {
if ( m_expandedTabSize < tab->neededSize() ) { if ( m_expandedTabSize < tab->neededSize() ) {
m_expandedTabSize = tab->neededSize(); m_expandedTabSize = tab->neededSize();
for ( uint i = 0;i < m_tabs.count();i++ ) for ( uint i = 0;i < m_tabs.count();i++ )
@ -801,7 +801,7 @@ void MultiTabBarTab::setState( bool b )
void MultiTabBarTab::updateState() void MultiTabBarTab::updateState()
{ {
if ( m_style != MultiTabBar::KONTQSBC ) { if ( m_style != MultiTabBar::KONQSBC ) {
if ( ( m_style == MultiTabBar::KDEV3 ) || ( m_style == MultiTabBar::KDEV3ICON ) || ( m_style == MultiTabBar::AMAROK ) || ( isOn() ) ) { if ( ( m_style == MultiTabBar::KDEV3 ) || ( m_style == MultiTabBar::KDEV3ICON ) || ( m_style == MultiTabBar::AMAROK ) || ( isOn() ) ) {
TQPushButton::setText( m_text ); TQPushButton::setText( m_text );
} else { } else {
@ -858,7 +858,7 @@ void MultiTabBarTab::drawButtonLabel( TQPainter *p )
void MultiTabBarTab::drawButton( TQPainter *paint ) void MultiTabBarTab::drawButton( TQPainter *paint )
{ {
if ( m_style == MultiTabBar::AMAROK ) drawButtonAmarok( paint ); if ( m_style == MultiTabBar::AMAROK ) drawButtonAmarok( paint );
else if ( m_style != MultiTabBar::KONTQSBC ) drawButtonStyled( paint ); else if ( m_style != MultiTabBar::KONQSBC ) drawButtonStyled( paint );
else drawButtonClassic( paint ); else drawButtonClassic( paint );
} }
@ -1161,7 +1161,7 @@ MultiTabBar::MultiTabBar( MultiTabBarMode bm, TQWidget *parent, const char *name
setPosition( ( bm == MultiTabBar::Vertical ) ? MultiTabBar::Right : MultiTabBar::Bottom ); setPosition( ( bm == MultiTabBar::Vertical ) ? MultiTabBar::Right : MultiTabBar::Bottom );
setStyle( VSNET ); setStyle( VSNET );
// setStyle(KDEV3); // setStyle(KDEV3);
//setStyle(KONTQSBC); //setStyle(KONQSBC);
m_l->insertWidget( 0, m_internal ); m_l->insertWidget( 0, m_internal );
m_l->insertWidget( 0, m_btnTabSep = new TQFrame( this ) ); m_l->insertWidget( 0, m_btnTabSep = new TQFrame( this ) );
m_btnTabSep->setFixedHeight( 4 ); m_btnTabSep->setFixedHeight( 4 );

@ -68,10 +68,10 @@ class MultiTabBar: public TQWidget
/** /**
* VSNET == Visual Studio .Net like (only show the text of active tabs * VSNET == Visual Studio .Net like (only show the text of active tabs
* KDEV3 == Kdevelop 3 like (always show the text) * KDEV3 == Kdevelop 3 like (always show the text)
* KONTQSBC == konqy's classic sidebar style (unthemed), this one is disabled * KONQSBC == konqy's classic sidebar style (unthemed), this one is disabled
* at the moment, but will be renabled soon too * at the moment, but will be renabled soon too
*/ */
enum MultiTabBarStyle{VSNET = 0, KDEV3 = 1, KONTQSBC = 2, KDEV3ICON = 3, AMAROK = 4, STYLELAST = 0xffff}; enum MultiTabBarStyle{VSNET = 0, KDEV3 = 1, KONQSBC = 2, KDEV3ICON = 3, AMAROK = 4, STYLELAST = 0xffff};
MultiTabBar( MultiTabBarMode bm, TQWidget *parent = 0, const char *name = 0 ); MultiTabBar( MultiTabBarMode bm, TQWidget *parent = 0, const char *name = 0 );
virtual ~MultiTabBar(); virtual ~MultiTabBar();

Loading…
Cancel
Save