summaryrefslogtreecommitdiffstats
path: root/languages/cpp/simpletype.h
diff options
context:
space:
mode:
Diffstat (limited to 'languages/cpp/simpletype.h')
-rw-r--r--languages/cpp/simpletype.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/languages/cpp/simpletype.h b/languages/cpp/simpletype.h
index 49b01ee0..d3b288c0 100644
--- a/languages/cpp/simpletype.h
+++ b/languages/cpp/simpletype.h
@@ -410,11 +410,11 @@ class SimpleTypeImpl : public KShared {
}
protected:
- virtual void tqinvalidateCache() {}
+ virtual void invalidateCache() {}
;
///Secondary cache also depends on the surrounding
- virtual void tqinvalidateSecondaryCache() {}
+ virtual void invalidateSecondaryCache() {}
virtual void setSecondaryCacheActive( bool active ) {
Q_UNUSED( active );
@@ -422,7 +422,7 @@ class SimpleTypeImpl : public KShared {
///Primary cache is the one associated only with this object. It must only be cleared
///when the object pointed to changes
- virtual void tqinvalidatePrimaryCache( bool onlyNegative = false ) {}
+ virtual void invalidatePrimaryCache( bool onlyNegative = false ) {}
static TQString operatorToString( Operator op );
@@ -483,7 +483,7 @@ class SimpleTypeImpl : public KShared {
///sets the tqparent-type(type this one is nested in)
void setParent( TypePointer tqparent ) {
if( tqparent == m_parent ) return;
- tqinvalidateSecondaryCache();
+ invalidateSecondaryCache();
if ( &( *tqparent ) == this ) {
kdDebug( 9007 ) << "setSlaveParent error\n" << kdBacktrace() << endl;
return ;