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/element.h | |
parent | 251c9a439759c830d34c70683d0fc9454d703010 (diff) | |
download | kbibtex-5f5e7c5455d52826b0bd50f64fcffb7695ce970d.tar.gz kbibtex-5f5e7c5455d52826b0bd50f64fcffb7695ce970d.zip |
Initial TQt conversion
Diffstat (limited to 'src/element.h')
-rw-r--r-- | src/element.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/element.h b/src/element.h index 1955383..c470f0d 100644 --- a/src/element.h +++ b/src/element.h @@ -23,7 +23,7 @@ #include <file.h> #include <entryfield.h> -class QString; +class TQString; namespace BibTeX { @@ -36,11 +36,11 @@ namespace BibTeX Element(); virtual ~Element(); - virtual bool containsPattern( const QString& /* pattern */, BibTeX::EntryField::FieldType /* fieldType */, FilterType /* filterType */ = BibTeX::Element::ftExact, bool /* caseSensitive */ = false ) const = 0; + virtual bool containsPattern( const TQString& /* pattern */, BibTeX::EntryField::FieldType /* fieldType */, FilterType /* filterType */ = BibTeX::Element::ftExact, bool /* caseSensitive */ = false ) const = 0; virtual Element* clone() = 0; - virtual QString text() const = 0; + virtual TQString text() const = 0; - static bool isSimpleString( const QString &text ); + static bool isSimpleString( const TQString &text ); }; |