summaryrefslogtreecommitdiffstats
path: root/kcachegrind/kcachegrind/tracedata.h
diff options
context:
space:
mode:
Diffstat (limited to 'kcachegrind/kcachegrind/tracedata.h')
-rw-r--r--kcachegrind/kcachegrind/tracedata.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/kcachegrind/kcachegrind/tracedata.h b/kcachegrind/kcachegrind/tracedata.h
index 1b57d297..edc4c8f8 100644
--- a/kcachegrind/kcachegrind/tracedata.h
+++ b/kcachegrind/kcachegrind/tracedata.h
@@ -64,7 +64,7 @@ class TQFile;
*
* For cost items, which are sums over all trace files read in, the
* summed cost metrics change when e.g. a new trace file is read.
- * Thus, their cached costs are tqinvalidated, and again recalculated
+ * Thus, their cached costs are invalidated, and again recalculated
* only on demand. In the following list, theses cost items are called
* "dynamic", the other "fixed" (but neverless calculated lazy).
*
@@ -301,7 +301,7 @@ public:
virtual void clear();
/** Invalidate the cost attributes.
- * An tqinvalidated object needs to be recalculated when a cost
+ * An invalidated object needs to be recalculated when a cost
* attribute is requested (e.g. by subCost()).
* Has to be overwritten by subclasses when the cost influences costs of
* other cost items. If only one item depends on the cost of this item,
@@ -310,7 +310,7 @@ public:
virtual void tqinvalidate();
/**
- * Sets a dependant to be tqinvalidated when this cost is tqinvalidated.
+ * Sets a dependant to be invalidated when this cost is invalidated.
* Call this function directly after the constructor.
*/
void setDependant(TraceItem* d) { _dep = d; }
@@ -1303,7 +1303,7 @@ class TraceCall: public TraceCallListCost
// we need some special handling for cycle calls
void update();
- void tqinvalidateDynamicCost();
+ void invalidateDynamicCost();
// factories
TracePartCall* partCall(TracePart*,
@@ -1502,7 +1502,7 @@ public:
uint lastLineno();
TraceLineMap* lineMap();
- void tqinvalidateDynamicCost();
+ void invalidateDynamicCost();
/* factories */
TraceLine* line(uint lineno, bool createNew = true);
@@ -1592,7 +1592,7 @@ class TraceFunction: public TraceCostItem
// this tqinvalidate all subcosts of function depending on
// active status of parts
- void tqinvalidateDynamicCost();
+ void invalidateDynamicCost();
void addCaller(TraceCall*);
@@ -1651,7 +1651,7 @@ class TraceFunction: public TraceCostItem
void addAssoziation(TraceAssoziation* a);
void removeAssoziation(TraceAssoziation* a);
void removeAssoziation(int rtti, bool reallyDelete = true);
- void tqinvalidateAssoziation(int rtti);
+ void invalidateAssoziation(int rtti);
TraceAssoziation* assoziation(int rtti);
// cycles
@@ -1844,7 +1844,7 @@ class TraceData: public TraceCost
* tqinvalidate the dynamic costs on a activation change,
* i.e. all cost items dependend on active parts.
* This has to be done by the caller when true is returned by
- * calling tqinvalidateDynamicCost().
+ * calling invalidateDynamicCost().
*/
bool activateParts(const TracePartList&);
bool activateParts(TracePartList, bool active);
@@ -1914,8 +1914,8 @@ class TraceData: public TraceCost
virtual void update();
- // tqinvalidates all cost items dependant on active state of parts
- void tqinvalidateDynamicCost();
+ // invalidates all cost items dependant on active state of parts
+ void invalidateDynamicCost();
// cycle detection
void updateFunctionCycles();