summaryrefslogtreecommitdiffstats
path: root/languages/pascal/pascalsupport_part.h
diff options
context:
space:
mode:
Diffstat (limited to 'languages/pascal/pascalsupport_part.h')
-rw-r--r--languages/pascal/pascalsupport_part.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/languages/pascal/pascalsupport_part.h b/languages/pascal/pascalsupport_part.h
index 4319d1f9..2cc8089d 100644
--- a/languages/pascal/pascalsupport_part.h
+++ b/languages/pascal/pascalsupport_part.h
@@ -10,7 +10,7 @@
#ifndef __KDEVPART_PASCALSUPPORT_H__
#define __KDEVPART_PASCALSUPPORT_H__
-#include <qguardedptr.h>
+#include <tqguardedptr.h>
#include "kdevlanguagesupport.h"
class PascalSupportWidget;
@@ -23,14 +23,14 @@ class PascalSupportPart : public KDevLanguageSupport
{
Q_OBJECT
public:
- PascalSupportPart(QObject *parent, const char *name, const QStringList &);
+ PascalSupportPart(TQObject *parent, const char *name, const TQStringList &);
~PascalSupportPart();
virtual Features features();
virtual KMimeType::List mimeTypes();
- virtual QString formatTag( const Tag& tag );
- virtual QString formatModelItem( const CodeModelItem *item, bool shortDescription=false );
+ virtual TQString formatTag( const Tag& tag );
+ virtual TQString formatModelItem( const CodeModelItem *item, bool shortDescription=false );
private slots:
void projectOpened();
@@ -38,22 +38,22 @@ private slots:
void savedFile(const KURL &fileName);
void configWidget(KDialogBase *dlg);
void projectConfigWidget(KDialogBase *dlg);
- void contextMenu(QPopupMenu *popup, const Context *context);
+ void contextMenu(TQPopupMenu *popup, const Context *context);
- void addedFilesToProject(const QStringList &fileList);
- void removedFilesFromProject(const QStringList &fileList);
+ void addedFilesToProject(const TQStringList &fileList);
+ void removedFilesFromProject(const TQStringList &fileList);
void slotProjectCompiled();
void initialParse();
private:
- void maybeParse(const QString &fileName);
- void parse(const QString &fileName);
+ void maybeParse(const TQString &fileName);
+ void parse(const TQString &fileName);
- QGuardedPtr<PascalSupportWidget> m_widget;
+ TQGuardedPtr<PascalSupportWidget> m_widget;
bool m_projectClosed;
- QStringList m_projectFileList;
+ TQStringList m_projectFileList;
PascalSupportPartData* d;