~quadrispro/codelite/trunk

« back to all changes in this revision

Viewing changes to LiteEditor/localstable.cpp

  • Committer: eranif
  • Date: 2010-03-30 14:32:25 UTC
  • Revision ID: svn-v4:9da81c78-c036-0410-9e1f-a2b0375e4b5a:trunk:4015
- Reverted back to use debugger tip based on wxDialog (to remove the constraint of the tip being confined to the editor area)

Show diffs side-by-side

added added

removed removed

Lines of Context:
154
154
                wxString name = GetColumnText(m_listTable, sel, LOCAL_NAME_COL);
155
155
                if( dbgr && dbgr->IsRunning() && ManagerST::Get()->DbgCanInteract() ) {
156
156
 
157
 
                        // FIXME: Fox this
158
 
//                      if ( ManagerST::Get()->GetDisplayVariableDialog()->IsShown() ) {
159
 
//                              ManagerST::Get()->GetDisplayVariableDialog()->HideDialog();
160
 
//                      }
161
 
//
162
 
//                      dbgr->CreateVariableObject(name, DBG_USERR_LOCALS);
 
157
                        if ( ManagerST::Get()->GetDebuggerTip()->IsShown() ) {
 
158
                                ManagerST::Get()->GetDebuggerTip()->HideDialog();
 
159
                        }
 
160
 
 
161
                        dbgr->CreateVariableObject(name, DBG_USERR_LOCALS);
163
162
                }
164
163
        }
165
164
}