From 7be55ffa061c026e35e2d6a0effe1161ddb0d41f Mon Sep 17 00:00:00 2001 From: tpearson Date: Sat, 31 Jul 2010 19:53:50 +0000 Subject: Trinity Qt initial conversion git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1157655 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- libkcal/exceptions.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'libkcal/exceptions.cpp') diff --git a/libkcal/exceptions.cpp b/libkcal/exceptions.cpp index 677ec418a..98d7153eb 100644 --- a/libkcal/exceptions.cpp +++ b/libkcal/exceptions.cpp @@ -26,7 +26,7 @@ using namespace KCal; -Exception::Exception(const QString &message) +Exception::Exception(const TQString &message) { mMessage = message; } @@ -35,22 +35,22 @@ Exception::~Exception() { } -QString Exception::message() +TQString Exception::message() { if (mMessage.isEmpty()) return i18n("%1 Error").arg(CalFormat::application()); else return mMessage; } -ErrorFormat::ErrorFormat(ErrorCodeFormat code,const QString &message) : +ErrorFormat::ErrorFormat(ErrorCodeFormat code,const TQString &message) : Exception(message) { mCode = code; } -QString ErrorFormat::message() +TQString ErrorFormat::message() { - QString message = ""; + TQString message = ""; switch (mCode) { case LoadError: -- cgit v1.2.1