mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-07 17:56:01 +02:00
Bug 311628 - TVT36:TCT139: CHS: Mnemonic Keys Aren't Needed for Flyover
This commit is contained in:
parent
c1c856a38e
commit
a85f49062c
2 changed files with 6 additions and 4 deletions
|
@ -7,6 +7,7 @@
|
||||||
#
|
#
|
||||||
# Contributors:
|
# Contributors:
|
||||||
# QNX Software Systems - Initial API and implementation
|
# QNX Software Systems - Initial API and implementation
|
||||||
|
# IBM Corporation
|
||||||
###############################################################################
|
###############################################################################
|
||||||
|
|
||||||
find_replace_action_label=&Find/Replace...@Ctrl+F
|
find_replace_action_label=&Find/Replace...@Ctrl+F
|
||||||
|
@ -21,7 +22,7 @@ BuildConsolePage_Select_All=Select All
|
||||||
|
|
||||||
ScrollLockAction_Scroll_Lock_1=Scroll Lock
|
ScrollLockAction_Scroll_Lock_1=Scroll Lock
|
||||||
|
|
||||||
NextErrorAction_Tooltip=&Next Error
|
NextErrorAction_Tooltip=Next Error
|
||||||
PreviousErrorAction_Tooltip=&Previous Error
|
PreviousErrorAction_Tooltip=Previous Error
|
||||||
ShowErrorAction_Tooltip=&Show Error In Editor
|
ShowErrorAction_Tooltip=Show Error In Editor
|
||||||
SaveConsole_ActionTooltip=Save Console Output To File
|
SaveConsole_ActionTooltip=Save Console Output To File
|
|
@ -7,6 +7,7 @@
|
||||||
*
|
*
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* Dmitry Kozlov (CodeSourcery) - Initial API and implementation
|
* Dmitry Kozlov (CodeSourcery) - Initial API and implementation
|
||||||
|
* IBM Corporation
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
|
|
||||||
package org.eclipse.cdt.internal.ui.buildconsole;
|
package org.eclipse.cdt.internal.ui.buildconsole;
|
||||||
|
@ -23,7 +24,7 @@ public class PreviousErrorAction extends Action {
|
||||||
private BuildConsolePage fConsolePage;
|
private BuildConsolePage fConsolePage;
|
||||||
|
|
||||||
public PreviousErrorAction(BuildConsolePage page) {
|
public PreviousErrorAction(BuildConsolePage page) {
|
||||||
super(ConsoleMessages.NextErrorAction_Tooltip);
|
super(ConsoleMessages.PreviousErrorAction_Tooltip);
|
||||||
fConsolePage = page;
|
fConsolePage = page;
|
||||||
setEnabled(true);
|
setEnabled(true);
|
||||||
setToolTipText(ConsoleMessages.PreviousErrorAction_Tooltip);
|
setToolTipText(ConsoleMessages.PreviousErrorAction_Tooltip);
|
||||||
|
|
Loading…
Add table
Reference in a new issue