summaryrefslogtreecommitdiffstats
path: root/karm/test/lockerthread.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:53:50 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:53:50 +0000
commit7be55ffa061c026e35e2d6a0effe1161ddb0d41f (patch)
tree8474f9b444b2756228600050f07a7ff25de532b2 /karm/test/lockerthread.cpp
parentf587f20a6d09f1729dd0a8c1cd8ee0110aec7451 (diff)
downloadtdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.tar.gz
tdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1157655 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'karm/test/lockerthread.cpp')
-rw-r--r--karm/test/lockerthread.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/karm/test/lockerthread.cpp b/karm/test/lockerthread.cpp
index 6ec6e7ba..91468221 100644
--- a/karm/test/lockerthread.cpp
+++ b/karm/test/lockerthread.cpp
@@ -1,5 +1,5 @@
-#include <qthread.h>
-#include <qstring.h>
+#include <tqthread.h>
+#include <tqstring.h>
#include <resourcecalendar.h>
#include <resourcelocal.h>
@@ -7,14 +7,14 @@
#include "lockerthread.h"
-LockerThread::LockerThread( const QString &icsfile )
+LockerThread::LockerThread( const TQString &icsfile )
{
m_gotlock = false;
m_icsfile = icsfile;
}
/*
-void LockerThread::setIcsFile( const QString &filename )
+void LockerThread::setIcsFile( const TQString &filename )
{
m_icsfile = filename;
}
@@ -26,7 +26,7 @@ void LockerThread::run()
KCal::ResourceCalendar *calendar = 0;
KCal::CalendarResources::Ticket *lock = 0;
- calendars = new KCal::CalendarResources( QString::fromLatin1( "UTC" ) );
+ calendars = new KCal::CalendarResources( TQString::fromLatin1( "UTC" ) );
calendar = new KCal::ResourceLocal( m_icsfile );
lock = calendars->requestSaveTicket( calendar );
if ( lock )