diff options
author | Eike Ziller <eike.ziller@nokia.com> | 2012-01-13 09:36:30 +0100 |
---|---|---|
committer | Friedemann Kleint <Friedemann.Kleint@nokia.com> | 2012-01-13 10:10:26 +0100 |
commit | edcb065edb74c40d6d3eed79d4b7260595039369 (patch) | |
tree | d842c771402e8100bcddc1e1a0147fc70bda5ca4 /src/plugins/remotelinux/remotelinuxplugin.cpp | |
parent | b49a817bfb1e12151d316b5c1e92ac4fe0cc6e21 (diff) | |
download | qt-creator-edcb065edb74c40d6d3eed79d4b7260595039369.tar.gz |
Windows build fix.
Change-Id: I4b7223e16eb727e9d98cc973eb64cb4f9feccdcc
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@nokia.com>
Diffstat (limited to 'src/plugins/remotelinux/remotelinuxplugin.cpp')
-rw-r--r-- | src/plugins/remotelinux/remotelinuxplugin.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/remotelinux/remotelinuxplugin.cpp b/src/plugins/remotelinux/remotelinuxplugin.cpp index 920a9f8c7c..fe44f60ac4 100644 --- a/src/plugins/remotelinux/remotelinuxplugin.cpp +++ b/src/plugins/remotelinux/remotelinuxplugin.cpp @@ -110,13 +110,13 @@ void RemoteLinuxPlugin::extensionsInitialized() act = new QAction(tr("Start Remote Debug Server..."), 0); cmd = am->registerAction(act, "StartGdbServer", globalcontext); - cmd->setDefaultText(tr("Start Gdbserver")); + cmd->setDescription(tr("Start Gdbserver")); mstart->addAction(cmd, Debugger::Constants::G_MANUAL_REMOTE); connect(act, SIGNAL(triggered()), SLOT(startGdbServer())); act = new QAction(tr("Attach to Running Remote Process..."), 0); cmd = am->registerAction(act, "AttachRemoteProcess", globalcontext); - cmd->setDefaultText(tr("Attach to Remote Process")); + cmd->setDescription(tr("Attach to Remote Process")); mstart->addAction(cmd, Debugger::Constants::G_AUTOMATIC_REMOTE); connect(act, SIGNAL(triggered()), SLOT(startGdbServer())); */ |