mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
Fix for bug 65173
* browser/org/eclipse/cdt/internal/ui/browser/cbrowsing/LexicalSortingAction.java
This commit is contained in:
parent
2f8f528a15
commit
175ab5cf00
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2004-06-08 Alain Magloire
|
||||||
|
|
||||||
|
Fix for bug 65173
|
||||||
|
* browser/org/eclipse/cdt/internal/ui/browser/cbrowsing/LexicalSortingAction.java
|
||||||
|
|
||||||
2004-06-08 Alain Magloire
|
2004-06-08 Alain Magloire
|
||||||
|
|
||||||
Fix For Bug 65172
|
Fix For Bug 65172
|
||||||
|
|
|
@ -32,7 +32,7 @@ public class LexicalSortingAction extends Action {
|
||||||
fViewer= viewer;
|
fViewer= viewer;
|
||||||
fPreferenceKey= "LexicalSortingAction." + id + ".isChecked"; //$NON-NLS-1$ //$NON-NLS-2$
|
fPreferenceKey= "LexicalSortingAction." + id + ".isChecked"; //$NON-NLS-1$ //$NON-NLS-2$
|
||||||
setText(CBrowsingMessages.getString("LexicalSortingAction.label")); //$NON-NLS-1$
|
setText(CBrowsingMessages.getString("LexicalSortingAction.label")); //$NON-NLS-1$
|
||||||
CPluginImages.setImageDescriptors(this, "T_LCL", CPluginImages.IMG_ALPHA_SORTING); //$NON-NLS-1$ //$NON-NLS-2$
|
CPluginImages.setImageDescriptors(this, CPluginImages.T_LCL, CPluginImages.IMG_ALPHA_SORTING); //$NON-NLS-1$ //$NON-NLS-2$
|
||||||
setToolTipText(CBrowsingMessages.getString("LexicalSortingAction.tooltip")); //$NON-NLS-1$
|
setToolTipText(CBrowsingMessages.getString("LexicalSortingAction.tooltip")); //$NON-NLS-1$
|
||||||
setDescription(CBrowsingMessages.getString("LexicalSortingAction.description")); //$NON-NLS-1$
|
setDescription(CBrowsingMessages.getString("LexicalSortingAction.description")); //$NON-NLS-1$
|
||||||
boolean checked= CUIPlugin.getDefault().getPreferenceStore().getBoolean(fPreferenceKey); //$NON-NLS-1$
|
boolean checked= CUIPlugin.getDefault().getPreferenceStore().getBoolean(fPreferenceKey); //$NON-NLS-1$
|
||||||
|
|
Loading…
Add table
Reference in a new issue