diff options
Diffstat (limited to 'src/entryfield.h')
-rw-r--r-- | src/entryfield.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/entryfield.h b/src/entryfield.h index 6b3af30..684045e 100644 --- a/src/entryfield.h +++ b/src/entryfield.h @@ -20,7 +20,7 @@ #ifndef BIBTEXBIBTEXENTRYFIELD_H #define BIBTEXBIBTEXENTRYFIELD_H -#include <qstring.h> +#include <ntqstring.h> #include <value.h> @@ -32,23 +32,23 @@ namespace BibTeX enum FieldType {ftAbstract, ftAddress, ftAnnote, ftAuthor, ftBookTitle, ftChapter, ftCrossRef, ftDoi, ftEdition, ftEditor, ftHowPublished, ftInstitution, ftISBN, ftISSN, ftJournal, ftKey, ftKeywords, ftLocalFile, ftLocation, ftMonth, ftNote, ftNumber, ftOrganization, ftPages, ftPublisher, ftSchool, ftSeries, ftTitle, ftType, ftURL, ftVolume, ftYear, ftUnknown = -1}; EntryField( FieldType fieldType ); - EntryField( const QString &fieldTypeName ); + EntryField( const TQString &fieldTypeName ); EntryField( BibTeX::EntryField *other ); ~EntryField(); - QString fieldTypeName() const; + TQString fieldTypeName() const; FieldType fieldType() const; - void setFieldType( FieldType fieldType, const QString& fieldTypeName ); + void setFieldType( FieldType fieldType, const TQString& fieldTypeName ); - static QString fieldTypeToString( const FieldType fieldType ); - static FieldType fieldTypeFromString( const QString &fieldTypeString ); + static TQString fieldTypeToString( const FieldType fieldType ); + static FieldType fieldTypeFromString( const TQString &fieldTypeString ); BibTeX::Value *value(); void setValue( const BibTeX::Value *value ); private: FieldType m_fieldType; - QString m_fieldTypeName; + TQString m_fieldTypeName; Value *m_value; }; |