diff options
Diffstat (limited to 'kate/tabbarextension/plugin_katetabbarextension.h')
-rw-r--r-- | kate/tabbarextension/plugin_katetabbarextension.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kate/tabbarextension/plugin_katetabbarextension.h b/kate/tabbarextension/plugin_katetabbarextension.h index 710eb97..f991c42 100644 --- a/kate/tabbarextension/plugin_katetabbarextension.h +++ b/kate/tabbarextension/plugin_katetabbarextension.h @@ -179,8 +179,8 @@ class KateTabBarExtension : public TQWidget * constructor * @param pDocManager pointer to kate's document manager * @param win pinter to the main window - * @param bHorizOrientation true, if orientation is Qt::Horizontal - * @param bSort true, if orientation is Qt::Horizontal + * @param bHorizOrientation true, if orientation is Horizontal + * @param bSort true, if orientation is Horizontal * @param parent parent widget * @param name name of widget * @param f widget flags @@ -196,7 +196,7 @@ class KateTabBarExtension : public TQWidget /** * @return the tabbar's orientation */ - Qt::Orientation orientation() const { return m_orientation; } + TQt::Orientation orientation() const { return m_orientation; } /** * @return true, when sorting is alphabetically @@ -271,9 +271,9 @@ class KateTabBarExtension : public TQWidget /** * called whenever the toolbar's orientation changes - * @param o new orientation [Qt::Horizontal or Qt::Vertical] + * @param o new orientation [TQt::Horizontal or TQt::Vertical] */ - void slotMoved(Qt::Orientation o); + void slotMoved(TQt::Orientation o); /** * called when we want to close the document associated with the tab @@ -288,7 +288,7 @@ class KateTabBarExtension : public TQWidget Kate::DocumentManager* m_docManager; ///< pointer to the document manager // TQPtrList <KateTabBarButton> m_tabs; ///< list containing all tabs MyPtrList m_tabs; ///< list containing all tabs - Qt::Orientation m_orientation; ///< save tabbar's orientation + TQt::Orientation m_orientation; ///< save tabbar's orientation bool m_sort; ///< how to sort bool m_closeOnMiddleClick; ///< Enable/disable "close document on mouse middle click" feature }; |