summaryrefslogtreecommitdiffstats
path: root/kpilot/conduits/vcalconduit/vcal-conduit.cc
diff options
context:
space:
mode:
Diffstat (limited to 'kpilot/conduits/vcalconduit/vcal-conduit.cc')
-rw-r--r--kpilot/conduits/vcalconduit/vcal-conduit.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/kpilot/conduits/vcalconduit/vcal-conduit.cc b/kpilot/conduits/vcalconduit/vcal-conduit.cc
index 0eea4273..d882cf8f 100644
--- a/kpilot/conduits/vcalconduit/vcal-conduit.cc
+++ b/kpilot/conduits/vcalconduit/vcal-conduit.cc
@@ -104,8 +104,8 @@ KCal::Incidence *VCalConduitPrivate::findIncidence(PilotRecordBase *tosearch)
PilotDateEntry*entry=dynamic_cast<PilotDateEntry*>(tosearch);
if (!entry) return 0L;
- QString title=entry->getDescription();
- QDateTime dt=readTm( entry->getEventStart() );
+ TQString title=entry->getDescription();
+ TQDateTime dt=readTm( entry->getEventStart() );
KCal::Event::List::ConstIterator it;
for( it = fAllEvents.begin(); it != fAllEvents.end(); ++it ) {
@@ -170,7 +170,7 @@ KCal::Incidence *VCalConduitPrivate::getNextModifiedIncidence()
VCalConduit::VCalConduit(KPilotLink *d,
const char *n,
- const QStringList &a) :
+ const TQStringList &a) :
VCalConduitBase(d,n,a),
fAppointmentAppInfo( 0L )
{
@@ -196,11 +196,11 @@ void VCalConduit::_getAppInfo()
fAppointmentAppInfo = new PilotDateInfo( fDatabase );
}
-const QString VCalConduit::getTitle(PilotRecordBase *de)
+const TQString VCalConduit::getTitle(PilotRecordBase *de)
{
PilotDateEntry*d=dynamic_cast<PilotDateEntry*>(de);
- if (d) return QString(d->getDescription());
- return QString::null;
+ if (d) return TQString(d->getDescription());
+ return TQString::null;
}