summaryrefslogtreecommitdiffstats
path: root/languages/php/phpsupportpart.h
diff options
context:
space:
mode:
Diffstat (limited to 'languages/php/phpsupportpart.h')
-rw-r--r--languages/php/phpsupportpart.h38
1 files changed, 19 insertions, 19 deletions
diff --git a/languages/php/phpsupportpart.h b/languages/php/phpsupportpart.h
index 83478283..5f7ba13b 100644
--- a/languages/php/phpsupportpart.h
+++ b/languages/php/phpsupportpart.h
@@ -20,9 +20,9 @@
#ifndef _PHPSUPPORTPART_H_
#define _PHPSUPPORTPART_H_
-#include <qdir.h>
-#include <qfile.h>
-#include <qprogressbar.h>
+#include <tqdir.h>
+#include <tqfile.h>
+#include <tqprogressbar.h>
#include <kdialogbase.h>
#include "kdevlanguagesupport.h"
@@ -46,17 +46,17 @@ class PHPSupportPart : public KDevLanguageSupport
Q_OBJECT
public:
- PHPSupportPart( QObject *parent, const char *name, const QStringList & );
+ PHPSupportPart( TQObject *parent, const char *name, const TQStringList & );
~PHPSupportPart();
PHPErrorView *ErrorView();
PHPParser *Parser( ) ;
- QString getIncludePath();
- QString getExePath();
+ TQString getIncludePath();
+ TQString getExePath();
void emitFileParsed( PHPFile *file );
- virtual void customEvent( QCustomEvent* ev );
+ virtual void customEvent( TQCustomEvent* ev );
protected:
virtual Features features();
@@ -66,15 +66,15 @@ 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 slotRun();
void slotNewClass();
void projectConfigWidget(KDialogBase *dlg);
void slotReceivedPHPExeStderr (KProcess* proc, char* buffer, int buflen);
void slotReceivedPHPExeStdout (KProcess* proc, char* buffer, int buflen);
void slotPHPExeExited (KProcess* proc);
- void slotWebData(KIO::Job* job,const QByteArray& data);
+ void slotWebData(KIO::Job* job,const TQByteArray& data);
void slotWebResult(KIO::Job* job);
void slotWebJobStarted(KIO::Job* job);
@@ -91,7 +91,7 @@ private slots:
void slotConfigStored();
private:
- QString getExecuteFile();
+ TQString getExecuteFile();
void executeOnWebserver();
void executeInTerminal();
bool validateConfig();
@@ -99,7 +99,7 @@ private:
PHPHTMLView* m_htmlView;
PHPErrorView* m_phpErrorView;
KShellProcess* phpExeProc;
- QString m_phpExeOutput;
+ TQString m_phpExeOutput;
PHPConfigData* configData;
PHPCodeCompletion* m_codeCompletion;
PHPParser* m_parser;
@@ -107,13 +107,13 @@ private:
struct JobData
{
- QDir dir;
- QGuardedPtr<QProgressBar> progressBar;
- QStringList::Iterator it;
- QStringList files;
- QMap< QString, QPair<uint, uint> > pcs;
- QDataStream stream;
- QFile file;
+ TQDir dir;
+ TQGuardedPtr<TQProgressBar> progressBar;
+ TQStringList::Iterator it;
+ TQStringList files;
+ TQMap< TQString, QPair<uint, uint> > pcs;
+ TQDataStream stream;
+ TQFile file;
~JobData()
{