summaryrefslogtreecommitdiffstats
path: root/languages/cpp/cppsplitheadersourceconfig.h
diff options
context:
space:
mode:
Diffstat (limited to 'languages/cpp/cppsplitheadersourceconfig.h')
-rw-r--r--languages/cpp/cppsplitheadersourceconfig.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/languages/cpp/cppsplitheadersourceconfig.h b/languages/cpp/cppsplitheadersourceconfig.h
index d975bc2c..52be4297 100644
--- a/languages/cpp/cppsplitheadersourceconfig.h
+++ b/languages/cpp/cppsplitheadersourceconfig.h
@@ -21,7 +21,7 @@
#ifndef CPPSPLITHEADERSOURCECONFIG_H
#define CPPSPLITHEADERSOURCECONFIG_H
-#include <qobject.h>
+#include <tqobject.h>
class CppSupportPart;
class QDomDocument;
@@ -30,7 +30,7 @@ class CppSplitHeaderSourceConfig : public QObject
{
Q_OBJECT
public:
- CppSplitHeaderSourceConfig( CppSupportPart* part, QDomDocument* dom );
+ CppSplitHeaderSourceConfig( CppSupportPart* part, TQDomDocument* dom );
virtual ~CppSplitHeaderSourceConfig();
bool splitEnabled() const
@@ -45,11 +45,11 @@ public:
}
void setAutoSync( bool b );
- QString orientation() const
+ TQString orientation() const
{
return m_splitOrientation;
}
- void setOrientation( const QString &o );
+ void setOrientation( const TQString &o );
public slots:
void store();
@@ -62,12 +62,12 @@ signals:
private:
CppSupportPart* m_part;
- QDomDocument* m_dom;
+ TQDomDocument* m_dom;
bool m_splitEnable;
bool m_splitSync;
- QString m_splitOrientation;
+ TQString m_splitOrientation;
- static QString defaultPath;
+ static TQString defaultPath;
};
#endif