diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-07-02 06:40:27 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-07-02 06:40:27 +0000 |
commit | 2595a15ebeb6fc46b7cb241d01ec0c2460ec2111 (patch) | |
tree | 18a8f0f4ac5a86dacfa74c3537551ec39bc85e75 /src/reportdialog.h | |
parent | 1d90725a4001fab9d3922b2cbcceeee5e2d1686f (diff) | |
download | tellico-2595a15ebeb6fc46b7cb241d01ec0c2460ec2111.tar.gz tellico-2595a15ebeb6fc46b7cb241d01ec0c2460ec2111.zip |
TQt4 port tellico
This enables compilation under both Qt3 and Qt4
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/tellico@1239054 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/reportdialog.h')
-rw-r--r-- | src/reportdialog.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/reportdialog.h b/src/reportdialog.h index 758c2d6..ea0579e 100644 --- a/src/reportdialog.h +++ b/src/reportdialog.h @@ -31,15 +31,16 @@ namespace Tellico { */ class ReportDialog : public KDialogBase { Q_OBJECT + TQ_OBJECT public: /** * The constructor sets up the dialog. * - * @param parent A pointer to the parent widget + * @param tqparent A pointer to the tqparent widget * @param name The widget name */ - ReportDialog(QWidget* parent, const char* name=0); + ReportDialog(TQWidget* tqparent, const char* name=0); virtual ~ReportDialog(); public slots: @@ -57,7 +58,7 @@ private: KHTMLPart* m_HTMLPart; GUI::ComboBox* m_templateCombo; Export::HTMLExporter* m_exporter; - QString m_xsltFile; + TQString m_xsltFile; }; } // end namespace |