summaryrefslogtreecommitdiffstats
path: root/kate/interfaces/toolviewmanager.h
diff options
context:
space:
mode:
Diffstat (limited to 'kate/interfaces/toolviewmanager.h')
-rw-r--r--kate/interfaces/toolviewmanager.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/kate/interfaces/toolviewmanager.h b/kate/interfaces/toolviewmanager.h
index 0a1011181..2e9242f3a 100644
--- a/kate/interfaces/toolviewmanager.h
+++ b/kate/interfaces/toolviewmanager.h
@@ -20,7 +20,7 @@
#ifndef _KATE_TOOLVIEWMANAGER_INCLUDE_
#define _KATE_TOOLVIEWMANAGER_INCLUDE_
-#include <qwidget.h>
+#include <tqwidget.h>
#include <kurl.h>
namespace Kate
@@ -60,7 +60,7 @@ class KDE_EXPORT ToolViewManager : public QObject
* @param text text to use in addition to icon
* @return created toolview on success or 0
*/
- QWidget *createToolView (const QString &identifier, ToolViewManager::Position pos, const QPixmap &icon, const QString &text);
+ TQWidget *createToolView (const TQString &identifier, ToolViewManager::Position pos, const TQPixmap &icon, const TQString &text);
/**
* Move the toolview
@@ -68,21 +68,21 @@ class KDE_EXPORT ToolViewManager : public QObject
* @param pos position to move widget to
* @return bool success
*/
- bool moveToolView (QWidget *widget, ToolViewManager::Position pos);
+ bool moveToolView (TQWidget *widget, ToolViewManager::Position pos);
/**
* Show the toolview
* @param widget to show, widget given must be widget constructed by createToolView
* @return bool success
*/
- bool showToolView (QWidget *widget);
+ bool showToolView (TQWidget *widget);
/**
* Hide the toolview
* @param widget to hide, widget given must be widget constructed by createToolView
* @return bool success
*/
- bool hideToolView (QWidget *widget);
+ bool hideToolView (TQWidget *widget);
private:
/**