summaryrefslogtreecommitdiffstats
path: root/libkcal
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-09 02:23:29 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-09 02:23:29 +0000
commitdfb7562b7e607f0ae077a6a436966203029df56d (patch)
treed58abf870c3754458d44a192a0b9e186f506c4ed /libkcal
parentfc5197ec86abe5dc0fa4b48979684845b52357f2 (diff)
downloadtdepim-dfb7562b7e607f0ae077a6a436966203029df56d.tar.gz
tdepim-dfb7562b7e607f0ae077a6a436966203029df56d.zip
Remove the tq in front of these incorrectly TQt4-converted methods/data members:
tqrepaint[...] tqinvalidate[...] tqparent[...] tqmask[...] tqlayout[...] tqalignment[...] git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1240522 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'libkcal')
-rw-r--r--libkcal/COPYING2
-rw-r--r--libkcal/calendar.cpp6
-rw-r--r--libkcal/dndfactory.cpp8
-rw-r--r--libkcal/icalformat.cpp8
-rw-r--r--libkcal/resourcecached.cpp6
5 files changed, 15 insertions, 15 deletions
diff --git a/libkcal/COPYING b/libkcal/COPYING
index 5c8730e0..21e21126 100644
--- a/libkcal/COPYING
+++ b/libkcal/COPYING
@@ -250,7 +250,7 @@ linked without the Library, or if the work is itself a library. The
threshold for this to be true is not precisely defined by law.
If such an object file uses only numerical parameters, data
-structure tqlayouts and accessors, and small macros and small inline
+structure layouts and accessors, and small macros and small inline
functions (ten lines or less in length), then the use of the object
file is unrestricted, regardless of whether it is legally a derivative
work. (Executables containing this object code plus portions of the
diff --git a/libkcal/calendar.cpp b/libkcal/calendar.cpp
index 9d9b63f4..a5f91932 100644
--- a/libkcal/calendar.cpp
+++ b/libkcal/calendar.cpp
@@ -475,12 +475,12 @@ bool Calendar::deleteIncidence( Incidence *incidence )
if ( beginChange( incidence ) ) {
if (incidence->hasRecurrenceID()) {
// Delete this event's UID from the tqparent's list of tqchildren
- Incidence *tqparentIncidence;
+ Incidence *parentIncidence;
IncidenceList il = incidence->childIncidences();
IncidenceListIterator it;
it = il.begin();
- tqparentIncidence = this->incidence(*it);
- tqparentIncidence->deleteChildIncidence(incidence->uid());
+ parentIncidence = this->incidence(*it);
+ parentIncidence->deleteChildIncidence(incidence->uid());
}
else {
// Delete all tqchildren as well
diff --git a/libkcal/dndfactory.cpp b/libkcal/dndfactory.cpp
index fd1ef20d..9ebae51d 100644
--- a/libkcal/dndfactory.cpp
+++ b/libkcal/dndfactory.cpp
@@ -216,7 +216,7 @@ Incidence::List DndFactory::pasteIncidences( const TQDate &newDate, const TQTime
}
// All pasted incidences get new uids, must keep track of old uids,
- // so we can update child's tqparents
+ // so we can update child's parents
TQMap<TQString,Incidence*> oldUidToNewInc;
Incidence::List::ConstIterator it;
@@ -233,9 +233,9 @@ Incidence::List DndFactory::pasteIncidences( const TQDate &newDate, const TQTime
for ( it = list.constBegin(); it != list.constEnd(); ++it ) {
Incidence *inc = *it;
if ( oldUidToNewInc.tqcontains( inc->relatedToUid() ) ) {
- Incidence *tqparentInc = oldUidToNewInc[inc->relatedToUid()];
- inc->setRelatedToUid( tqparentInc->uid() );
- inc->setRelatedTo( tqparentInc );
+ Incidence *parentInc = oldUidToNewInc[inc->relatedToUid()];
+ inc->setRelatedToUid( parentInc->uid() );
+ inc->setRelatedTo( parentInc );
} else {
// not related to anything in the clipboard
inc->setRelatedToUid( TQString() );
diff --git a/libkcal/icalformat.cpp b/libkcal/icalformat.cpp
index ce3f8002..c427b0df 100644
--- a/libkcal/icalformat.cpp
+++ b/libkcal/icalformat.cpp
@@ -304,9 +304,9 @@ TQString ICalFormat::toString( Incidence *incidence, Calendar *calendar )
IncidenceList il = incidence->childIncidences();
IncidenceListIterator it;
it = il.begin();
- Incidence *tqparentIncidence;
- tqparentIncidence = calendar->incidence(*it);
- il = tqparentIncidence->childIncidences();
+ Incidence *parentIncidence;
+ parentIncidence = calendar->incidence(*it);
+ il = parentIncidence->childIncidences();
if (il.count() > 0) {
for ( it = il.begin(); it != il.end(); ++it ) {
component = mImpl->writeIncidence( calendar->incidence(*it) );
@@ -314,7 +314,7 @@ TQString ICalFormat::toString( Incidence *incidence, Calendar *calendar )
icalcomponent_free( component );
}
}
- component = mImpl->writeIncidence( tqparentIncidence );
+ component = mImpl->writeIncidence( parentIncidence );
text = text + TQString::fromUtf8( icalcomponent_as_ical_string( component ) );
icalcomponent_free( component );
}
diff --git a/libkcal/resourcecached.cpp b/libkcal/resourcecached.cpp
index 09d1eef7..82732bab 100644
--- a/libkcal/resourcecached.cpp
+++ b/libkcal/resourcecached.cpp
@@ -523,10 +523,10 @@ void ResourceCached::calendarIncidenceDeleted( Incidence *i )
IncidenceList il = i->childIncidences();
IncidenceListIterator it;
it = il.begin();
- Incidence *tqparentIncidence;
- tqparentIncidence = this->incidence(*it);
+ Incidence *parentIncidence;
+ parentIncidence = this->incidence(*it);
// Remove the child
- calendarIncidenceChanged(tqparentIncidence);
+ calendarIncidenceChanged(parentIncidence);
}
else {
TQMap<Incidence *,bool>::ConstIterator it;