1
0
Fork 0
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:
Alain Magloire 2004-06-08 15:39:24 +00:00
parent 2f8f528a15
commit 175ab5cf00
2 changed files with 6 additions and 1 deletions

View file

@ -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
Fix For Bug 65172

View file

@ -32,7 +32,7 @@ public class LexicalSortingAction extends Action {
fViewer= viewer;
fPreferenceKey= "LexicalSortingAction." + id + ".isChecked"; //$NON-NLS-1$ //$NON-NLS-2$
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$
setDescription(CBrowsingMessages.getString("LexicalSortingAction.description")); //$NON-NLS-1$
boolean checked= CUIPlugin.getDefault().getPreferenceStore().getBoolean(fPreferenceKey); //$NON-NLS-1$