summaryrefslogtreecommitdiffstats
path: root/libkdchart/KDChartUnknownTypeException.h
diff options
context:
space:
mode:
Diffstat (limited to 'libkdchart/KDChartUnknownTypeException.h')
-rw-r--r--libkdchart/KDChartUnknownTypeException.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/libkdchart/KDChartUnknownTypeException.h b/libkdchart/KDChartUnknownTypeException.h
index 8f36a76..231a8c7 100644
--- a/libkdchart/KDChartUnknownTypeException.h
+++ b/libkdchart/KDChartUnknownTypeException.h
@@ -31,7 +31,7 @@
#ifdef USE_EXCEPTIONS
-#include <qstring.h>
+#include <tqstring.h>
#include "KDChartGlobal.h"
@@ -42,17 +42,17 @@
class KDCHART_EXPORT KDChartUnknownTypeException
{
public:
- KDChartUnknownTypeException( const QString& type ) :
+ KDChartUnknownTypeException( const TQString& type ) :
_type( type )
{}
- QString type() const
+ TQString type() const
{
return _type;
}
private:
- QString _type;
+ TQString _type;
};
#endif