diff options
Diffstat (limited to 'languages/ada/adasupportpart.h')
-rw-r--r-- | languages/ada/adasupportpart.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/languages/ada/adasupportpart.h b/languages/ada/adasupportpart.h index d9f2c45d..968b1d34 100644 --- a/languages/ada/adasupportpart.h +++ b/languages/ada/adasupportpart.h @@ -4,7 +4,7 @@ #include "kdevlanguagesupport.h" -#include <qwaitcondition.h> +#include <tqwaitcondition.h> class AdaSupportPartData; class KDialogBase; @@ -14,30 +14,30 @@ class AdaSupportPart : public KDevLanguageSupport { Q_OBJECT public: - AdaSupportPart (QObject *parent, const char *name, const QStringList &); + AdaSupportPart (TQObject *parent, const char *name, const TQStringList &); ~AdaSupportPart (); - void parseContents (const QString& contents, const QString& fileName); + void parseContents (const TQString& contents, const TQString& fileName); protected: Features features (); KMimeType::List mimeTypes (); - QStringList fileExtensions (); + TQStringList fileExtensions (); private slots: void projectOpened (); void projectClosed (); - void addedFilesToProject (const QStringList &fileList); - void removedFilesFromProject (const QStringList &fileList); - void changedFilesInProject( const QStringList &fileList ); + void addedFilesToProject (const TQStringList &fileList); + void removedFilesFromProject (const TQStringList &fileList); + void changedFilesInProject( const TQStringList &fileList ); void initialParse (); void savedFile (const KURL&); private: - void maybeParse (const QString &fileName); - void parse (const QString &fileName); + void maybeParse (const TQString &fileName); + void parse (const TQString &fileName); void saveProjectSourceInfo( ); private: |