Changeset 1654


Ignore:
Timestamp:
09/27/12 17:42:31 (12 years ago)
Author:
adeas31
Message:
  • The code-generation for functions is changed from _ to omc_.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/org.modelica.mdt.debug.core/src/org/modelica/mdt/debug/gdb/core/model/stack/GDBStackFrame.java

    r1516 r1654  
    120120            fName = fFrame.getFunction();
    121121        } else {
    122             // only remove first letter if its underscore.
    123             if (fFrame.getFunction().startsWith("_"))
    124                 fName = fFrame.getFunction().substring(1);
     122            // only remove first 4 letters if its omc_.
     123            if (fFrame.getFunction().startsWith("omc_"))
     124                fName = fFrame.getFunction().substring(4);
    125125            else
    126126                fName = fFrame.getFunction();
Note: See TracChangeset for help on using the changeset viewer.