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/comment.h | |
parent | 251c9a439759c830d34c70683d0fc9454d703010 (diff) | |
download | kbibtex-5f5e7c5455d52826b0bd50f64fcffb7695ce970d.tar.gz kbibtex-5f5e7c5455d52826b0bd50f64fcffb7695ce970d.zip |
Initial TQt conversion
Diffstat (limited to 'src/comment.h')
-rw-r--r-- | src/comment.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/comment.h b/src/comment.h index f259daf..10927e8 100644 --- a/src/comment.h +++ b/src/comment.h @@ -28,20 +28,20 @@ namespace BibTeX class Comment : public Element { public: - Comment( const QString &text, bool useCommand = false ); + Comment( const TQString &text, bool useCommand = false ); Comment( Comment *other ); virtual ~Comment(); - QString text() const; - void setText( const QString &text ); + TQString text() const; + void setText( const TQString &text ); bool useCommand() const; void setUseCommand( bool useCommand ); - bool containsPattern( const QString& pattern, EntryField::FieldType fieldType = EntryField::ftUnknown, FilterType filterType = BibTeX::Element::ftExact, bool caseSensitive = FALSE ) const; + bool containsPattern( const TQString& pattern, EntryField::FieldType fieldType = EntryField::ftUnknown, FilterType filterType = BibTeX::Element::ftExact, bool caseSensitive = FALSE ) const; Element* clone(); private: - QString m_text; + TQString m_text; bool m_useCommand; }; |