diff options
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 ); }; |