summaryrefslogtreecommitdiffstats
path: root/kate/utils/dockviewbase.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:33:34 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:33:34 +0000
commitc663b6440964f6ac48027143ac9e63298991f9d0 (patch)
tree6d8b0c5a5f9db1ee16acf98b1397cea9126b281d /kate/utils/dockviewbase.h
parenta061f7191beebb0e4a3b0c0a7c534ec5f22f2dc7 (diff)
downloadtdebase-c663b6440964f6ac48027143ac9e63298991f9d0.tar.gz
tdebase-c663b6440964f6ac48027143ac9e63298991f9d0.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1157639 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kate/utils/dockviewbase.h')
-rw-r--r--kate/utils/dockviewbase.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/kate/utils/dockviewbase.h b/kate/utils/dockviewbase.h
index 9e3010302..73d564e04 100644
--- a/kate/utils/dockviewbase.h
+++ b/kate/utils/dockviewbase.h
@@ -19,7 +19,7 @@
#ifndef _KATE_DOCKVIEW_BASE_H_
#define _KATE_DOCKVIEW_BASE_H_
-#include <qvbox.h>
+#include <tqvbox.h>
/**
* Namespace collecting as much of the internal Kate classes as we
@@ -50,50 +50,50 @@ namespace Kate
*/
-class DockViewBase : public QVBox {
+class DockViewBase : public TQVBox {
Q_OBJECT
public:
/**
Create a KateDockViewBase.
*/
- DockViewBase( QWidget *parent=0, const char *name=0 );
+ DockViewBase( TQWidget *parent=0, const char *name=0 );
/**
Create a KateDockViewBase with the title prefix @p prefix
and the title @p title.
*/
- DockViewBase( const QString &prefix, const QString &title, QWidget *parent=0, const char *name=0 );
+ DockViewBase( const TQString &prefix, const TQString &title, TQWidget *parent=0, const char *name=0 );
~DockViewBase();
/**
Set the title prefix to @p prefix.
*/
- void setTitlePrefix( const QString &prefix );
+ void setTitlePrefix( const TQString &prefix );
/**
@return The title prefix.
*/
- QString titlePrefix() const;
+ TQString titlePrefix() const;
/**
Set the title to @p title
*/
- void setTitle( const QString &title );
+ void setTitle( const TQString &title );
/**
Convenience method, sets both the prefix and title
*/
- void setTitle( const QString &prefix, const QString &title );
+ void setTitle( const TQString &prefix, const TQString &title );
/**
@return the title of the KateDockViewBase
*/
- QString title() const;
+ TQString title() const;
private:
/** Private initialization */
- void init( const QString &, const QString &);
+ void init( const TQString &, const TQString &);
class DockViewBasePrivate *d;
};