debugger: use the bineditor to show memory dumps

This commit is contained in:
hjk
2009-08-12 10:51:25 +02:00
parent 0c6b754a06
commit 89ffffc183
19 changed files with 308 additions and 53 deletions

View File

@@ -226,9 +226,9 @@ void DebuggerManager::init()
m_stackWindow = new StackWindow;
m_sourceFilesWindow = new SourceFilesWindow;
m_threadsWindow = new ThreadsWindow;
m_localsWindow = new WatchWindow(WatchWindow::LocalsType);
m_watchersWindow = new WatchWindow(WatchWindow::WatchersType);
//m_tooltipWindow = new WatchWindow(WatchWindow::TooltipType);
m_localsWindow = new WatchWindow(WatchWindow::LocalsType, this);
m_watchersWindow = new WatchWindow(WatchWindow::WatchersType, this);
//m_tooltipWindow = new WatchWindow(WatchWindow::TooltipType, this);
m_statusTimer = new QTimer(this);
m_mainWindow = new Core::Utils::FancyMainWindow;
@@ -1497,7 +1497,6 @@ bool DebuggerManager::isReverseDebugging() const
return m_reverseDirectionAction->isChecked();
}
//////////////////////////////////////////////////////////////////////
//
// Testing