summaryrefslogtreecommitdiffabout
path: root/pwmanager/pwmanager/csv.h
Side-by-side diff
Diffstat (limited to 'pwmanager/pwmanager/csv.h') (more/less context) (ignore whitespace changes)
-rw-r--r--pwmanager/pwmanager/csv.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/pwmanager/pwmanager/csv.h b/pwmanager/pwmanager/csv.h
index 6f3c1e1..8049122 100644
--- a/pwmanager/pwmanager/csv.h
+++ b/pwmanager/pwmanager/csv.h
@@ -12,25 +12,25 @@
/***************************************************************************
* copyright (C) 2004 by Ulf Schenk
* This file is originaly based on version 1.1 of pwmanager
* and was modified to run on embedded devices that run microkde
* The original file version was 1.2
* $Id$
**************************************************************************/
#ifndef __PWMANAGER_CSV_H
#define __PWMANAGER_CSV_H
-#include <qcstring.h>
+#include <q3cstring.h>
#include <qfile.h>
class PwMDoc;
class QString;
class QWidget;
/** class for CSV (Comma Separated Value) export and import.
*
* http://www.creativyst.com/Doc/Articles/CSV/CSV01.htm
* http://en.wikipedia.org/wiki/Comma-separated_values
*
@@ -64,28 +64,28 @@ public:
protected:
/** do the import process. */
bool doImport(const QByteArray &d,
PwMDoc *doc);
/** parse for the next field.
* @return Return values are:
* 0 -> successfully got the next field.
* 1 -> record end.
* 2 -> data end.
* -1 -> parser error.
*/
- int nextField(QCString *ret,
+ int nextField(Q3CString *ret,
const QByteArray &in,
bool inRecord,
int *_refIndex);
/** do the export process. */
bool doExport(QFile &f,
PwMDoc *doc);
/** generate a new data field string. */
- QCString newField(QCString s);
+ Q3CString newField(Q3CString s);
protected:
/** current parent widget. */
QWidget *parent;
};
#endif // __PWMANAGER_CSV_H