summaryrefslogtreecommitdiffstats
path: root/kugar/part/kugar_view.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-06-25 05:28:35 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-06-25 05:28:35 +0000
commitf008adb5a77e094eaf6abf3fc0f36958e66896a5 (patch)
tree8e9244c4d4957c36be81e15b566b4aa5ea26c982 /kugar/part/kugar_view.h
parent1210f27b660efb7b37ff43ec68763e85a403471f (diff)
downloadkoffice-f008adb5a77e094eaf6abf3fc0f36958e66896a5.tar.gz
koffice-f008adb5a77e094eaf6abf3fc0f36958e66896a5.zip
TQt4 port koffice
This should enable compilation under both Qt3 and Qt4; fixes for any missed components will be forthcoming git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/koffice@1238284 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kugar/part/kugar_view.h')
-rw-r--r--kugar/part/kugar_view.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/kugar/part/kugar_view.h b/kugar/part/kugar_view.h
index a6838737..b29ea624 100644
--- a/kugar/part/kugar_view.h
+++ b/kugar/part/kugar_view.h
@@ -15,12 +15,13 @@ class KugarPart;
class KugarView: public KoView
{
Q_OBJECT
+ TQ_OBJECT
public:
- KugarView( KugarPart *part, QWidget *parent, const char *name );
+ KugarView( KugarPart *part, TQWidget *tqparent, const char *name );
virtual ~KugarView();
- void setForcedUserTemplate( const QString &name );
+ void setForcedUserTemplate( const TQString &name );
void updateReadWrite( bool )
{
@@ -29,7 +30,7 @@ public:
bool renderReport();
- bool setReportTemplate( const QString &data )
+ bool setReportTemplate( const TQString &data )
{
return view -> setReportTemplate( data );
}
@@ -47,7 +48,7 @@ public:
private:
Kugar::MReportViewer *view;
- QString m_forcedUserTemplate;
+ TQString m_forcedUserTemplate;
};
#endif