diff options
author | Slávek Banko <[email protected]> | 2013-06-29 12:56:53 +0200 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2013-07-04 03:11:35 +0200 |
commit | 5f5e7c5455d52826b0bd50f64fcffb7695ce970d (patch) | |
tree | c8ee8792d3fb139365abbf70c2255f1e69d2aa34 /src/fileimporterris.h | |
parent | 251c9a439759c830d34c70683d0fc9454d703010 (diff) | |
download | kbibtex-5f5e7c5455d52826b0bd50f64fcffb7695ce970d.tar.gz kbibtex-5f5e7c5455d52826b0bd50f64fcffb7695ce970d.zip |
Initial TQt conversion
Diffstat (limited to 'src/fileimporterris.h')
-rw-r--r-- | src/fileimporterris.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/fileimporterris.h b/src/fileimporterris.h index 11c52e9..ba204f1 100644 --- a/src/fileimporterris.h +++ b/src/fileimporterris.h @@ -23,7 +23,7 @@ #include <fileimporter.h> #include <entry.h> -class QTextStream; +class TQTextStream; namespace BibTeX { @@ -37,8 +37,8 @@ namespace BibTeX FileImporterRIS(); ~FileImporterRIS(); - File* load( QIODevice *iodevice ); - static bool guessCanDecode( const QString & text ); + File* load( TQIODevice *iodevice ); + static bool guessCanDecode( const TQString & text ); public slots: void cancel(); @@ -46,17 +46,17 @@ namespace BibTeX private: typedef struct { - QString key; - QString value; + TQString key; + TQString value; } RISitem; - typedef QValueList<RISitem> RISitemList; + typedef TQValueList<RISitem> RISitemList; bool cancelFlag; int m_refNr; - Element *nextElement( QTextStream &textStream ); - RISitemList readElement( QTextStream &textStream ); + Element *nextElement( TQTextStream &textStream ); + RISitemList readElement( TQTextStream &textStream ); }; } |