summaryrefslogtreecommitdiffstats
path: root/libkcal/exceptions.h
diff options
context:
space:
mode:
Diffstat (limited to 'libkcal/exceptions.h')
-rw-r--r--libkcal/exceptions.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/libkcal/exceptions.h b/libkcal/exceptions.h
index b86f513a..1ae90d51 100644
--- a/libkcal/exceptions.h
+++ b/libkcal/exceptions.h
@@ -28,7 +28,7 @@
// returned by an error function, but we can build upon them, if we start
// to use C++ exceptions.
-#include <qstring.h>
+#include <tqstring.h>
namespace KCal {
@@ -42,16 +42,16 @@ class Exception
/**
Construct exception with descriptive message \a message.
*/
- Exception( const QString &message = QString::null );
+ Exception( const TQString &message = TQString::null );
virtual ~Exception();
/**
Return descriptive message of exception.
*/
- virtual QString message();
+ virtual TQString message();
protected:
- QString mMessage;
+ TQString mMessage;
private:
class Private;
@@ -74,12 +74,12 @@ class ErrorFormat : public Exception
/**
Create format error exception.
*/
- ErrorFormat( ErrorCodeFormat code, const QString &message = QString::null );
+ ErrorFormat( ErrorCodeFormat code, const TQString &message = TQString::null );
/**
Return format error message.
*/
- QString message();
+ TQString message();
/**
Return format error code.
*/