summaryrefslogtreecommitdiffstats
path: root/src/comment.h
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2013-06-29 12:56:53 +0200
committerSlávek Banko <slavek.banko@axis.cz>2013-07-04 03:11:35 +0200
commit5f5e7c5455d52826b0bd50f64fcffb7695ce970d (patch)
treec8ee8792d3fb139365abbf70c2255f1e69d2aa34 /src/comment.h
parent251c9a439759c830d34c70683d0fc9454d703010 (diff)
downloadkbibtex-5f5e7c5455d52826b0bd50f64fcffb7695ce970d.tar.gz
kbibtex-5f5e7c5455d52826b0bd50f64fcffb7695ce970d.zip
Initial TQt conversion
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;
};