diff options
Diffstat (limited to 'kmdi/kmdidockcontainer.cpp')
-rw-r--r-- | kmdi/kmdidockcontainer.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kmdi/kmdidockcontainer.cpp b/kmdi/kmdidockcontainer.cpp index f488df509..71b154a14 100644 --- a/kmdi/kmdidockcontainer.cpp +++ b/kmdi/kmdidockcontainer.cpp @@ -24,7 +24,7 @@ #include "kdockwidget_private.h" #include <tqwidgetstack.h> -#include <layout.h> +#include <tqlayout.h> #include <tqtimer.h> #include <tqtooltip.h> #include <kmultitabbar.h> @@ -826,7 +826,7 @@ void KMdiDockContainer::prevToolView() if ( pos < 0 ) pos = tabs->count() - 1; - KMultiTabBarTab *tab = tabs->at( pos ); + KMultiTabBarTab *tab = tabs->tqat( pos ); if ( !tab ) return ; //can never happen here, but who knows @@ -847,7 +847,7 @@ void KMdiDockContainer::nextToolView() if ( pos >= ( int ) tabs->count() ) pos = 0; - KMultiTabBarTab *tab = tabs->at( pos ); + KMultiTabBarTab *tab = tabs->tqat( pos ); if ( !tab ) return ; //can never happen here, but who knows |