From cffea28032849a8eff6ebbeac2550883cb6326c2 Mon Sep 17 00:00:00 2001 From: Robert Knight Date: Mon, 3 Mar 2008 17:00:30 +0000 Subject: [PATCH] Remove debugging text. svn path=/trunk/KDE/kdebase/apps/konsole/; revision=781733 --- src/ViewManager.cpp | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/ViewManager.cpp b/src/ViewManager.cpp index 0fc1e865..599cfc1c 100644 --- a/src/ViewManager.cpp +++ b/src/ViewManager.cpp @@ -674,20 +674,11 @@ void ViewManager::applyProfile(TerminalDisplay* view , const QString& profileKey int tabBarPosition = info->property(Profile::TabBarPosition); if ( tabBarMode == Profile::AlwaysHideTabBar ) - { - qDebug() << "Always hide tab bar"; container->setNavigationDisplayMode(ViewContainer::AlwaysHideNavigation); - } else if ( tabBarMode == Profile::AlwaysShowTabBar ) - { - qDebug() << "Always show tab bar"; container->setNavigationDisplayMode(ViewContainer::AlwaysShowNavigation); - } else if ( tabBarMode == Profile::ShowTabBarAsNeeded ) - { - qDebug() << "Show as needed"; container->setNavigationDisplayMode(ViewContainer::ShowNavigationAsNeeded); - } ViewContainer::NavigationPosition position = container->navigationPosition();