From 5f5e7c5455d52826b0bd50f64fcffb7695ce970d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sl=C3=A1vek=20Banko?= Date: Sat, 29 Jun 2013 12:56:53 +0200 Subject: Initial TQt conversion --- src/comment.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/comment.h') 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; }; -- cgit v1.2.3