summaryrefslogtreecommitdiffstats
path: root/konsolekalendar/konsolekalendarexports.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 /konsolekalendar/konsolekalendarexports.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 'konsolekalendar/konsolekalendarexports.h')
-rw-r--r--konsolekalendar/konsolekalendarexports.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/konsolekalendar/konsolekalendarexports.h b/konsolekalendar/konsolekalendarexports.h
index dc2f44eca..8db27c97f 100644
--- a/konsolekalendar/konsolekalendarexports.h
+++ b/konsolekalendar/konsolekalendarexports.h
@@ -28,7 +28,7 @@
#ifndef _KONSOLEKALENDAREXPORTS_H_
#define _KONSOLEKALENDAREXPORTS_H_
-#include <qtextstream.h>
+#include <tqtextstream.h>
#include "konsolekalendarvariables.h"
@@ -60,28 +60,28 @@ namespace KCal
/**
* Export the Event in Text Mode.
- * @param ts pointer to the output QTextStream.
+ * @param ts pointer to the output TQTextStream.
* @param event pointer to the Event to export.
- * @param date is the QDate to be exported for.
+ * @param date is the TQDate to be exported for.
*/
- bool exportAsTxt( QTextStream *ts, Event *event, QDate date );
+ bool exportAsTxt( TQTextStream *ts, Event *event, TQDate date );
/**
* Export the Event in Short Text Mode.
- * @param ts pointer to the output QTextStream.
+ * @param ts pointer to the output TQTextStream.
* @param event pointer to the Event to export.
- * @param date is the QDate to be exported for.
+ * @param date is the TQDate to be exported for.
* @param sameday flags that this Event is on the same date as the
* previously exported Event.
*/
- bool exportAsTxtShort( QTextStream *ts, Event *event, QDate date,
+ bool exportAsTxtShort( TQTextStream *ts, Event *event, TQDate date,
bool sameday );
/**
* Export the Event in Comma-Separated Values (CSV) Mode.
- * @param ts pointer to the output QTextStream.
+ * @param ts pointer to the output TQTextStream.
* @param event pointer to the Event to export.
- * @param date is the QDate to be exported for.
+ * @param date is the TQDate to be exported for.
*/
- bool exportAsCSV( QTextStream *ts, Event *event, QDate date );
+ bool exportAsCSV( TQTextStream *ts, Event *event, TQDate date );
private:
KonsoleKalendarVariables *m_variables;
@@ -91,9 +91,9 @@ namespace KCal
* 1. Replaces double quotes by a pair of consecutive double quotes
* 2. Surrounds field with double quotes
* @param field is the field value to be processed.
- * @param dquote is a QString containing the double quote character.
+ * @param dquote is a TQString containing the double quote character.
*/
- QString processField( QString field, QString dquote );
+ TQString processField( TQString field, TQString dquote );
};