summaryrefslogtreecommitdiffstats
path: root/lib/catalog/catalog.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/catalog/catalog.h')
-rw-r--r--lib/catalog/catalog.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/lib/catalog/catalog.h b/lib/catalog/catalog.h
index 6ab985a9..00eb5b2b 100644
--- a/lib/catalog/catalog.h
+++ b/lib/catalog/catalog.h
@@ -20,9 +20,9 @@
#ifndef CATALOG_H
#define CATALOG_H
-#include <qvaluelist.h>
-#include <qpair.h>
-#include <qvariant.h>
+#include <tqvaluelist.h>
+#include <tqpair.h>
+#include <tqvariant.h>
#include "tag.h"
@@ -42,31 +42,31 @@ never or rarely changes. System libraries are perfect examples of such code.
class Catalog
{
public:
- typedef QPair<QCString, QVariant> QueryArgument;
+ typedef QPair<TQCString, TQVariant> QueryArgument;
public:
Catalog();
virtual ~Catalog();
bool isValid() const;
- QString dbName() const;
+ TQString dbName() const;
bool enabled() const;
void setEnabled( bool en );
- virtual void open( const QString& dbName );
+ virtual void open( const TQString& dbName );
virtual void close();
virtual void sync();
- QValueList<QCString> indexList() const;
- void addIndex( const QCString& name );
+ TQValueList<TQCString> indexList() const;
+ void addIndex( const TQCString& name );
void addItem( Tag& tag );
- Tag getItemById( const QCString& id );
- QValueList<Tag> query( const QValueList<QueryArgument>& args );
+ Tag getItemById( const TQCString& id );
+ TQValueList<Tag> query( const TQValueList<QueryArgument>& args );
- QCString generateId();
+ TQCString generateId();
private:
class _Catalog_Private* d;