beylevem
Tomato Guru
102 Posts |
Posted - Feb 10 2010 : 6:53:36 PM
|
This post seems strangely connected with "Test Suite Available"
I had a member function
.h: void Connect(Index, Fluid*) .cpp: void Class::Connect(Index i, Fluid* fld)
and I used Change Signature to add an argument:
>>> void Connect(Index, Fluid*, Real newVar) <<<
what I get is: .h: void Connect(Index, Fluid*, Real newVar) .cpp: void Class::Connect(Index, Fluid*, Real newVar)
what I expect is .h: void Connect(Index, Fluid*, Real newVar) .cpp: void Connect(Index i, Fluid* fld, Real newVar)
VA should be able to figure out that it's the thitd argument that has been changed/added
|
|