summaryrefslogtreecommitdiffstats
path: root/libkdepim/sidebarextension.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:53:50 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:53:50 +0000
commit7be55ffa061c026e35e2d6a0effe1161ddb0d41f (patch)
tree8474f9b444b2756228600050f07a7ff25de532b2 /libkdepim/sidebarextension.h
parentf587f20a6d09f1729dd0a8c1cd8ee0110aec7451 (diff)
downloadtdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.tar.gz
tdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1157655 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'libkdepim/sidebarextension.h')
-rw-r--r--libkdepim/sidebarextension.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/libkdepim/sidebarextension.h b/libkdepim/sidebarextension.h
index b1f6bccdd..e65d3c94a 100644
--- a/libkdepim/sidebarextension.h
+++ b/libkdepim/sidebarextension.h
@@ -21,7 +21,7 @@
#ifndef SIDEBAREXTENSION_H
#define SIDEBAREXTENSION_H
-#include <qobject.h>
+#include <tqobject.h>
#include <kdepimmacros.h>
class QWidget;
@@ -43,21 +43,21 @@ namespace KParts
/**
* Constucts a SideBarExtension.
*
- * @param exported A QWidget derived widget that will be provided for the
+ * @param exported A TQWidget derived widget that will be provided for the
* users of SideBarExtension.
* @param parent The parent widget.
* @param name The name of the class.
**/
- SideBarExtension(QWidget *exported, KParts::ReadOnlyPart *parent, const char* name);
+ SideBarExtension(TQWidget *exported, KParts::ReadOnlyPart *parent, const char* name);
~SideBarExtension();
/**
* Retrieve a pointer to the widget. May be 0 if 0 was passed in the constructor
**/
- QWidget* widget() const { return m_exported; }
+ TQWidget* widget() const { return m_exported; }
private:
- QWidget* m_exported;
+ TQWidget* m_exported;
class SideBarExtensionPrivate;
SideBarExtensionPrivate *d;