summaryrefslogtreecommitdiffstats
path: root/korganizer/konewstuff.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 /korganizer/konewstuff.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 'korganizer/konewstuff.cpp')
-rw-r--r--korganizer/konewstuff.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/korganizer/konewstuff.cpp b/korganizer/konewstuff.cpp
index 331126b38..83ee226da 100644
--- a/korganizer/konewstuff.cpp
+++ b/korganizer/konewstuff.cpp
@@ -38,7 +38,7 @@ KONewStuff::KONewStuff( CalendarView *view ) :
{
}
-bool KONewStuff::install( const QString &fileName )
+bool KONewStuff::install( const TQString &fileName )
{
kdDebug(5850) << "KONewStuff::install(): " << fileName << endl;
@@ -51,11 +51,11 @@ bool KONewStuff::install( const QString &fileName )
Event::List events = cal.events();
- QStringList eventList;
+ TQStringList eventList;
Event::List::ConstIterator it;
for( it = events.begin(); it != events.end(); ++it ) {
- QString text = (*it)->summary();
+ TQString text = (*it)->summary();
eventList.append( text );
}
@@ -68,7 +68,7 @@ bool KONewStuff::install( const QString &fileName )
return mView->openCalendar( fileName, true );
}
-bool KONewStuff::createUploadFile( const QString &fileName )
+bool KONewStuff::createUploadFile( const TQString &fileName )
{
return mView->saveCalendar( fileName );
}