views:

378

answers:

3
A: 

Looking naively at that callstack, have you checked if everything related to debugging symbols is on in your compiler options?

Paul-Jan
As far as I see, every possible impacting thing on debugging options is on...
smok1
@Paul-Jan: does refactoring tools use the debug info at any level?
utku_karatas
I don't expect it to, I was just going on the _GetSymbolInformation_ in the callstack. A long shot, and apparently completely off target.
Paul-Jan
A: 
smok1
A: 

Ok found the case.

This error occurs only if file in which we perform refactoring is not in USES section of DPR file ie. is a library file in Delphi’s search path (or how is this path called).

smok1