summaryrefslogtreecommitdiffstats
path: root/src/comment.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/comment.h')
-rw-r--r--src/comment.h10
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;
};