summaryrefslogtreecommitdiffstats
path: root/korganizer/konewstuff.cpp
diff options
context:
space:
mode:
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 331126b3..83ee226d 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 );
}