Ignore:
Timestamp:
09/20/11 00:57:18 (13 years ago)
Author:
adeas31
Message:

Trying to fix

  • asynchronous viewer update problem.
  • Child count problem.
  • Label Job problem.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/org.modelica.mdt.debug.ui/src/org/modelica/mdt/debug/ui/views/DataStackView.java

    r940 r977  
    3434import org.modelica.mdt.debug.gdb.core.model.GDBDebugTarget;
    3535import org.modelica.mdt.debug.gdb.core.model.stack.GDBStackFrame;
     36import org.modelica.mdt.debug.gdb.core.model.thread.GDBThread;
    3637
    3738/**
     
    174175            if (adaptable instanceof GDBStackFrame) {
    175176                try {
    176                     ((GDBStackFrame)adaptable).setCurrentFrame();
     177                    GDBStackFrame gdbStackFrame = (GDBStackFrame)adaptable;
     178                    GDBThread gdbThread = (GDBThread)gdbStackFrame.getThread();
     179                    gdbThread.setCurrentGDBStackFrame(gdbStackFrame);
    177180                } catch (Exception e) {
    178181                    // TODO Auto-generated catch block
Note: See TracChangeset for help on using the changeset viewer.