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.
|
||||
\o \bold{Support for qmake's .pro file format}: The project's \c{.pro}
|
||||
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
|
||||
debugger.
|
||||
debugger (GDB) and the Microsoft Console Debugger (CDB).
|
||||
\endlist
|
||||
\endtable
|
||||
|
||||
@@ -1072,7 +1072,7 @@
|
||||
|
||||
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,
|
||||
\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
|
||||
sessions.
|
||||
|
||||
|
||||
@@ -34,7 +34,7 @@
|
||||
#include <coreplugin/icore.h>
|
||||
#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 Internal {
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
<string>These options take effect at the next start of Qt Creator.</string>
|
||||
</property>
|
||||
<property name="title">
|
||||
<string>CDB</string>
|
||||
<string>Cdb</string>
|
||||
</property>
|
||||
<property name="checkable">
|
||||
<bool>true</bool>
|
||||
|
||||
@@ -207,7 +207,7 @@ public slots:
|
||||
DebuggerOutputWindow::DebuggerOutputWindow(QWidget *parent)
|
||||
: QWidget(parent)
|
||||
{
|
||||
setWindowTitle(tr("Gdb"));
|
||||
setWindowTitle(tr("Debugger"));
|
||||
|
||||
QSplitter *m_splitter = new QSplitter(Qt::Horizontal, this);
|
||||
// mixed input/output
|
||||
|
||||
Reference in New Issue
Block a user