diff options
Diffstat (limited to 'languages/sql/sqlsupport_part.h')
-rw-r--r-- | languages/sql/sqlsupport_part.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/languages/sql/sqlsupport_part.h b/languages/sql/sqlsupport_part.h index e9ad6dbd..187a4bbd 100644 --- a/languages/sql/sqlsupport_part.h +++ b/languages/sql/sqlsupport_part.h @@ -1,8 +1,8 @@ #ifndef __KDEVPART_SQLSUPPORT_H__ #define __KDEVPART_SQLSUPPORT_H__ -#include <qguardedptr.h> -#include <qstringlist.h> +#include <tqguardedptr.h> +#include <tqstringlist.h> #include <kprocess.h> #include <kdialogbase.h> @@ -20,11 +20,11 @@ class SQLSupportPart : public KDevLanguageSupport public: - SQLSupportPart(QObject *parent, const char *name, const QStringList &); + SQLSupportPart(TQObject *parent, const char *name, const TQStringList &); virtual ~SQLSupportPart(); - static QString cryptStr(const QString& aStr); - const QStringList& connections() const { return conNames; } + static TQString cryptStr(const TQString& aStr); + const TQStringList& connections() const { return conNames; } protected: @@ -37,8 +37,8 @@ private slots: void projectOpened(); void projectClosed(); void savedFile(const KURL &fileName); - void addedFilesToProject(const QStringList &fileList); - void removedFilesFromProject(const QStringList &fileList); + void addedFilesToProject(const TQStringList &fileList); + void removedFilesFromProject(const TQStringList &fileList); void parse(); void loadConfig(); void activeConnectionChanged(); @@ -48,7 +48,7 @@ private: void updateCatalog(); SqlListAction* dbAction; SqlOutputWidget* m_widget; - QStringList conNames; + TQStringList conNames; CodeModel *m_store; }; |