diff options
author | hjk <qthjk@ovi.com> | 2012-11-17 15:22:36 +0100 |
---|---|---|
committer | hjk <qthjk@ovi.com> | 2012-11-20 14:39:34 +0100 |
commit | 2e01daa2a0f5e34f7c20fad8393e3649f228229b (patch) | |
tree | e1c51df01e83f6ab0386efb849b7c4c4509f0c08 /src/plugins/debugger/gdb | |
parent | efb3e91daa9c1bea4f50b5fa86cd6af9e7b3fb2e (diff) | |
download | qt-creator-2e01daa2a0f5e34f7c20fad8393e3649f228229b.tar.gz |
debugger: adjust reference to startup commands to reality
Change-Id: I4369de839eba8cd30d261b74e89f2363ca815926
Reviewed-by: Leena Miettinen <riitta-leena.miettinen@digia.com>
Diffstat (limited to 'src/plugins/debugger/gdb')
-rw-r--r-- | src/plugins/debugger/gdb/gdboptionspage.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/plugins/debugger/gdb/gdboptionspage.cpp b/src/plugins/debugger/gdb/gdboptionspage.cpp index aa0052ffe6..4aa5782eca 100644 --- a/src/plugins/debugger/gdb/gdboptionspage.cpp +++ b/src/plugins/debugger/gdb/gdboptionspage.cpp @@ -229,7 +229,12 @@ GdbOptionsPageWidget::GdbOptionsPageWidget(QWidget *parent) "<html><head/><body><p>GDB commands entered here will be executed after " "GDB has been started and the debugging helpers have been initialized.</p>" "<p>You can add commands to load further debugging helpers here, or " - "modify existing ones.</p><p>To execute arbitrary Python scripts, " + "modify existing ones.</p>" + "<p>To execute simple Python commands, prefix them with \"python\".</p>" + "<p>To execute sequences of Python commands spanning multiple lines " + "prepend the block with \"python\" on a separate line, and append " + "\"end\" on a separate line.</p>" + "<p>To execute arbitrary Python scripts, " "use <i>python execfile('/path/to/script.py')</i>.</p>" "</body></html>")); |