summaryrefslogtreecommitdiffstats
path: root/parts/ctags2/ctags2_part.h
diff options
context:
space:
mode:
Diffstat (limited to 'parts/ctags2/ctags2_part.h')
-rw-r--r--parts/ctags2/ctags2_part.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/parts/ctags2/ctags2_part.h b/parts/ctags2/ctags2_part.h
index 77725500..b602ca35 100644
--- a/parts/ctags2/ctags2_part.h
+++ b/parts/ctags2/ctags2_part.h
@@ -12,8 +12,8 @@
#ifndef __KDEVPART_CTAGS2_H__
#define __KDEVPART_CTAGS2_H__
-#include <qguardedptr.h>
-#include <qstring.h>
+#include <tqguardedptr.h>
+#include <tqstring.h>
#include <kdevplugin.h>
#include "tags.h"
@@ -32,12 +32,12 @@ class CTags2Part : public KDevPlugin
public:
- CTags2Part(QObject *parent, const char *name, const QStringList &);
+ CTags2Part(TQObject *parent, const char *name, const TQStringList &);
~CTags2Part();
- int getFileLineFromPattern( KURL const & url, QString const & pattern);
+ int getFileLineFromPattern( KURL const & url, TQString const & pattern);
bool createTagsFile();
- bool createTagsFile(const QString& tagFile, const QString& dir);
+ bool createTagsFile(const TQString& tagFile, const TQString& dir);
private slots:
void slotLookupDeclaration();
@@ -48,17 +48,17 @@ private slots:
void slotGotoDefinition();
void slotGotoDeclaration();
void slotGotoTag();
- void contextMenu(QPopupMenu *, const Context *);
- void insertConfigWidget( const KDialogBase * dlg, QWidget * page, unsigned int );
- void updateTagsfileName( const QString & name );
+ void contextMenu(TQPopupMenu *, const Context *);
+ void insertConfigWidget( const KDialogBase * dlg, TQWidget * page, unsigned int );
+ void updateTagsfileName( const TQString & name );
private:
- int getFileLineFromStream( QTextStream & stream, QString const & pattern);
- void gotoTagForTypes( QStringList const & types );
+ int getFileLineFromStream( TQTextStream & stream, TQString const & pattern);
+ void gotoTagForTypes( TQStringList const & types );
void showHits( Tags::TagList const & tags );
- QGuardedPtr<CTags2Widget> m_widget;
- QString m_contextString ;
+ TQGuardedPtr<CTags2Widget> m_widget;
+ TQString m_contextString ;
ConfigWidgetProxy * _configProxy;
};