diff options
Diffstat (limited to 'karbon/vtoolcontroller.h')
-rw-r--r-- | karbon/vtoolcontroller.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/karbon/vtoolcontroller.h b/karbon/vtoolcontroller.h index 69df1219..47667172 100644 --- a/karbon/vtoolcontroller.h +++ b/karbon/vtoolcontroller.h @@ -20,10 +20,10 @@ #ifndef __VTOOLCONTROLLER_H__ #define __VTOOLCONTROLLER_H__ -#include <qdict.h> +#include <tqdict.h> #include <KoPoint.h> -class QEvent; +class TQEvent; class VTool; class KarbonView; @@ -43,14 +43,14 @@ public: void setCurrentTool( VTool * ); VTool *currentTool() const { return m_currentTool; } - bool mouseEvent( QMouseEvent* event, const KoPoint& ); - bool keyEvent( QEvent* event ); + bool mouseEvent( TQMouseEvent* event, const KoPoint& ); + bool keyEvent( TQEvent* event ); - const QDict<VTool> &tools() { return m_tools; } + const TQDict<VTool> &tools() { return m_tools; } void setUp( KActionCollection *ac, VToolBox * toolbox ); void resetToolBox( VToolBox * toolbox ); - VTool *findTool( const QString &toolName ) const; + VTool *findTool( const TQString &toolName ) const; // Called when the toolbox is deleted because the view was made inactive in favour of another view void youAintGotNoToolBox(); @@ -58,7 +58,7 @@ public: private: KarbonView *m_view; VTool *m_currentTool; - QDict<VTool> m_tools; + TQDict<VTool> m_tools; VToolBox *m_toolBox; bool m_setup; }; |