Index: src/InitTweak/InitTweak.cc
===================================================================
--- src/InitTweak/InitTweak.cc	(revision 5363fdfcf06413c23984402cd5aa41fe2b09d15c)
+++ src/InitTweak/InitTweak.cc	(revision 549c006f5f7e2f45d09672b9abae0dfe3809c271)
@@ -270,15 +270,15 @@
 	}
 
-	Type * getThisType( FunctionType * ftype ) {
-		assertf( ftype, "getThisType: nullptr ftype" );
-		ObjectDecl * thisParam = getThisParam( ftype );
+	Type * getTypeofThis( FunctionType * ftype ) {
+		assertf( ftype, "getTypeofThis: nullptr ftype" );
+		ObjectDecl * thisParam = getParamThis( ftype );
 		ReferenceType * refType = strict_dynamic_cast< ReferenceType * >( thisParam->type );
 		return refType->base;
 	}
 
-	ObjectDecl * getThisParam( FunctionType * ftype ) {
-		assertf( ftype, "getThisParam: nullptr ftype" );
+	ObjectDecl * getParamThis( FunctionType * ftype ) {
+		assertf( ftype, "getParamThis: nullptr ftype" );
 		auto & params = ftype->parameters;
-		assertf( ! params.empty(), "getThisParam: ftype with 0 parameters: %s", toString( ftype ).c_str() );
+		assertf( ! params.empty(), "getParamThis: ftype with 0 parameters: %s", toString( ftype ).c_str() );
 		return strict_dynamic_cast< ObjectDecl * >( params.front() );
 	}
Index: src/InitTweak/InitTweak.h
===================================================================
--- src/InitTweak/InitTweak.h	(revision 5363fdfcf06413c23984402cd5aa41fe2b09d15c)
+++ src/InitTweak/InitTweak.h	(revision 549c006f5f7e2f45d09672b9abae0dfe3809c271)
@@ -31,8 +31,8 @@
 
 	/// returns the base type of the first parameter to a constructor/destructor/assignment function
-	Type * getThisType( FunctionType * ftype );
+	Type * getTypeofThis( FunctionType * ftype );
 
 	/// returns the first parameter of a constructor/destructor/assignment function
-	ObjectDecl * getThisParam( FunctionType * ftype );
+	ObjectDecl * getParamThis( FunctionType * ftype );
 
 	/// transform Initializer into an argument list that can be passed to a call expression
