forked from qt-creator/qt-creator
Unify Gdb and Gdb spelling, rename Gdb View to "Debugger", update docs.
This commit is contained in:
Binary file not shown.
|
Before Width: | Height: | Size: 140 KiB After Width: | Height: | Size: 117 KiB |
@@ -37,9 +37,9 @@
|
|||||||
files and classes using minimal keystrokes.
|
files and classes using minimal keystrokes.
|
||||||
\o \bold{Support for qmake's .pro file format}: The project's \c{.pro}
|
\o \bold{Support for qmake's .pro file format}: The project's \c{.pro}
|
||||||
file is used as a project description file.
|
file is used as a project description file.
|
||||||
\o \bold{Debugging Interface to GDB}: Applications can be debugged
|
\o \bold{Debugging Interface}: Applications can be debugged
|
||||||
within Qt Creator using a graphical frontend to the GNU symbolic
|
within Qt Creator using a graphical frontend to the GNU symbolic
|
||||||
debugger.
|
debugger (GDB) and the Microsoft Console Debugger (CDB).
|
||||||
\endlist
|
\endlist
|
||||||
\endtable
|
\endtable
|
||||||
|
|
||||||
@@ -1072,7 +1072,7 @@
|
|||||||
|
|
||||||
Here, you can lock or unlock the location of your views as well as display
|
Here, you can lock or unlock the location of your views as well as display
|
||||||
or hide them. Among the views you can display are \gui Breakpoints,
|
or hide them. Among the views you can display are \gui Breakpoints,
|
||||||
\gui Disassembler, \gui Modules, \gui Registers, \gui Gdb, \gui Stack, and
|
\gui Disassembler, \gui Modules, \gui Registers, \gui Debugger, \gui Stack, and
|
||||||
\gui Thread. The position of your dock widgets will be saved for future
|
\gui Thread. The position of your dock widgets will be saved for future
|
||||||
sessions.
|
sessions.
|
||||||
|
|
||||||
|
|||||||
@@ -34,7 +34,7 @@
|
|||||||
#include <coreplugin/icore.h>
|
#include <coreplugin/icore.h>
|
||||||
#include <QtCore/QCoreApplication>
|
#include <QtCore/QCoreApplication>
|
||||||
|
|
||||||
const char * const CDB_SETTINGS_ID = QT_TRANSLATE_NOOP("Debugger::Internal::CdbOptionsPageWidget", "CDB");
|
const char * const CDB_SETTINGS_ID = QT_TRANSLATE_NOOP("Debugger::Internal::CdbOptionsPageWidget", "Cdb");
|
||||||
|
|
||||||
namespace Debugger {
|
namespace Debugger {
|
||||||
namespace Internal {
|
namespace Internal {
|
||||||
|
|||||||
@@ -22,7 +22,7 @@
|
|||||||
<string>These options take effect at the next start of Qt Creator.</string>
|
<string>These options take effect at the next start of Qt Creator.</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="title">
|
<property name="title">
|
||||||
<string>CDB</string>
|
<string>Cdb</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="checkable">
|
<property name="checkable">
|
||||||
<bool>true</bool>
|
<bool>true</bool>
|
||||||
|
|||||||
@@ -207,7 +207,7 @@ public slots:
|
|||||||
DebuggerOutputWindow::DebuggerOutputWindow(QWidget *parent)
|
DebuggerOutputWindow::DebuggerOutputWindow(QWidget *parent)
|
||||||
: QWidget(parent)
|
: QWidget(parent)
|
||||||
{
|
{
|
||||||
setWindowTitle(tr("Gdb"));
|
setWindowTitle(tr("Debugger"));
|
||||||
|
|
||||||
QSplitter *m_splitter = new QSplitter(Qt::Horizontal, this);
|
QSplitter *m_splitter = new QSplitter(Qt::Horizontal, this);
|
||||||
// mixed input/output
|
// mixed input/output
|
||||||
|
|||||||
Reference in New Issue
Block a user