@Rolf,
if it's not too much work, is it possible to implement compiler switch something like this:
{$IGNORE_DEBUG_BREAK}
so when it's defined, DEBUG_BREAK (or my custom alias based shorter "Dbg" version) commands in code will simply be ignored by debugger? That way we could leave them in code if we wish without tons of ugly ifdefs.
With additional
{$ENABLE_DEBUG_BREAK}
we could use this feature on just part of the source (like few new procedures in our latest unit)...
if it's not too much work, is it possible to implement compiler switch something like this:
{$IGNORE_DEBUG_BREAK}
so when it's defined, DEBUG_BREAK (or my custom alias based shorter "Dbg" version) commands in code will simply be ignored by debugger? That way we could leave them in code if we wish without tons of ugly ifdefs.
With additional
{$ENABLE_DEBUG_BREAK}
we could use this feature on just part of the source (like few new procedures in our latest unit)...