Browse Source

COMP: Fixing warnings about variables having the
same name as class methods.

Luis Ibanez 15 years ago
parent
commit
aedfa55c48
1 changed files with 2 additions and 2 deletions
  1. 2 2
      Libs/Core/ctkModelTester.cxx

+ 2 - 2
Libs/Core/ctkModelTester.cxx

@@ -118,9 +118,9 @@ bool ctkModelTester::throwOnError()const
 }
 
 //-----------------------------------------------------------------------------
-void ctkModelTester::setNestedInserts( bool nestedInserts )
+void ctkModelTester::setNestedInserts( bool nestedInsertsValue )
 {
-  qctk_d()->NestedInserts = nestedInserts;
+  qctk_d()->NestedInserts = nestedInsertsValue;
 }
 
 //-----------------------------------------------------------------------------