diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:53:50 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:53:50 +0000 |
commit | 7be55ffa061c026e35e2d6a0effe1161ddb0d41f (patch) | |
tree | 8474f9b444b2756228600050f07a7ff25de532b2 /kpilot/conduits/vcalconduit/vcal-conduit.cc | |
parent | f587f20a6d09f1729dd0a8c1cd8ee0110aec7451 (diff) | |
download | tdepim-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 'kpilot/conduits/vcalconduit/vcal-conduit.cc')
-rw-r--r-- | kpilot/conduits/vcalconduit/vcal-conduit.cc | 12 |
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; } |