summaryrefslogtreecommitdiffstats
path: root/languages/ruby/rubysupport_part.h
diff options
context:
space:
mode:
Diffstat (limited to 'languages/ruby/rubysupport_part.h')
-rw-r--r--languages/ruby/rubysupport_part.h36
1 files changed, 18 insertions, 18 deletions
diff --git a/languages/ruby/rubysupport_part.h b/languages/ruby/rubysupport_part.h
index 0d420cff..bc5e2552 100644
--- a/languages/ruby/rubysupport_part.h
+++ b/languages/ruby/rubysupport_part.h
@@ -6,7 +6,7 @@
#ifndef __KDEVPART_RUBYSUPPORT_H__
#define __KDEVPART_RUBYSUPPORT_H__
-#include <qguardedptr.h>
+#include <tqguardedptr.h>
#include "kdevlanguagesupport.h"
@@ -21,7 +21,7 @@ class RubySupportPart : public KDevLanguageSupport
public:
- RubySupportPart(QObject *parent, const char *name, const QStringList &);
+ RubySupportPart(TQObject *parent, const char *name, const TQStringList &);
virtual ~RubySupportPart();
virtual KDevDesignerIntegration *designer(KInterfaceDesigner::DesignerType type);
@@ -35,12 +35,12 @@ 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 slotRunTestUnderCursor();
void slotCreateSubclass();
- void contextMenu(QPopupMenu *popup, const Context *context);
+ void contextMenu(TQPopupMenu *popup, const Context *context);
void slotBrowse();
void initialParse();
@@ -51,23 +51,23 @@ private slots:
void slotSwitchToTest();
private:
- void startApplication(const QString &program);
- QString interpreter();
- QString shell();
- QString mainProgram();
- QString runDirectory();
- QString programArgs();
- QString characterCoding();
+ void startApplication(const TQString &program);
+ TQString interpreter();
+ TQString shell();
+ TQString mainProgram();
+ TQString runDirectory();
+ TQString programArgs();
+ TQString characterCoding();
- void maybeParse(const QString fileName);
- void parse(const QString &fileName);
+ void maybeParse(const TQString fileName);
+ void parse(const TQString &fileName);
- QMap<KInterfaceDesigner::DesignerType, KDevDesignerIntegration*> m_designers;
+ TQMap<KInterfaceDesigner::DesignerType, KDevDesignerIntegration*> m_designers;
- QString m_contextFileName;
- QCString m_shell;
+ TQString m_contextFileName;
+ TQCString m_shell;
- QGuardedPtr<KDevShellWidget> m_shellWidget;
+ TQGuardedPtr<KDevShellWidget> m_shellWidget;
};