diff options
author | hjk <[email protected]> | 2009-08-14 13:04:05 +0200 |
---|---|---|
committer | hjk <[email protected]> | 2009-08-17 13:18:54 +0200 |
commit | e82d6c7b057b012b417c3493e0493dbb1b59e0c2 (patch) | |
tree | 5e636aaeecdcf48daa52b74e6a5f6083f43f849f /src/plugins/debugger/cpptools.cpp | |
parent | 74602f3119d3fa1ebd81fb8e485918eb3f9bee66 (diff) |
debugger: create a disassembler view as main editor
"Stepping instruction wise" and "display disassembler" mode is now toggled by a
single action. This also allows to re-use F10 and F11 as keyboard shortcut.
Missing: caching of disassembler output, removal of old disassembler view.
Diffstat (limited to 'src/plugins/debugger/cpptools.cpp')
-rw-r--r-- | src/plugins/debugger/cpptools.cpp | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/src/plugins/debugger/cpptools.cpp b/src/plugins/debugger/cpptools.cpp new file mode 100644 index 00000000000..9b38e4615eb --- /dev/null +++ b/src/plugins/debugger/cpptools.cpp @@ -0,0 +1,47 @@ +/************************************************************************** +** +** This file is part of Qt Creator +** +** Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). +** +** Contact: Nokia Corporation ([email protected]) +** +** Commercial Usage +** +** Licensees holding valid Qt Commercial licenses may use this file in +** accordance with the Qt Commercial License Agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and Nokia. +** +** GNU Lesser General Public License Usage +** +** Alternatively, this file may be used under the terms of the GNU Lesser +** General Public License version 2.1 as published by the Free Software +** Foundation and appearing in the file LICENSE.LGPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU Lesser General Public License version 2.1 requirements +** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** If you are unsure which license is appropriate for your use, please +** contact the sales department at http://qt.nokia.com/contact. +** +**************************************************************************/ + +#include "cpptools.h" + +namespace Debugger { +namespace Internal { + +QByteArray mangleName(const QByteArray &ba) +{ + return ba; +} + + +QByteArray demangleName(const QByteArray &ba) +{ + return ba; +} + +} // namespace Internal +} // namespace Debugger |