summaryrefslogtreecommitdiffstats
path: root/src/preamble.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/preamble.h
parent251c9a439759c830d34c70683d0fc9454d703010 (diff)
downloadkbibtex-5f5e7c5455d52826b0bd50f64fcffb7695ce970d.tar.gz
kbibtex-5f5e7c5455d52826b0bd50f64fcffb7695ce970d.zip
Initial TQt conversion
Diffstat (limited to 'src/preamble.h')
-rw-r--r--src/preamble.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/preamble.h b/src/preamble.h
index fc6da9d..506096c 100644
--- a/src/preamble.h
+++ b/src/preamble.h
@@ -32,18 +32,18 @@ namespace BibTeX
{
public:
Preamble( );
- Preamble( const QString& text );
+ Preamble( const TQString& text );
Preamble( Preamble *other );
virtual ~Preamble();
Value *value() const;
void setValue( Value *value );
- 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();
void copyFrom( Preamble *other );
- QString text() const;
+ TQString text() const;
private:
Value *m_value;