1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-23 22:52:11 +02:00
This commit is contained in:
Alain Magloire 2003-04-05 02:05:00 +00:00
parent 19278dab53
commit 55972f09a0
2 changed files with 28 additions and 0 deletions

View file

@ -1,3 +1,29 @@
2003-04-04 Alain Magloire
The TextEditor provides a way to select a range to be edited.
We provide the same functionnality; "Show Source of Selected Element Only"
* icons/full/clcl16/segment_edit.gif:
* icons/full/dlcl16/segment_edit.gif:
* icons/full/elcl16/segment_edit.gif:
* src/org/eclipse/cdt/internal/ui/CPluginImages.java:
descriptor for segment_edit.gif.
* src/org/eclipse/cdt/ui/PreferenceConstants.java:
Move the preference constants so they can be visible to other plugins.
* src/org/eclipse/cdt/internal/ui/cview/CView.java:
* src/org/eclipse/cdt/internal/preference/CPlugigPreferencePage.java:
* src/org/eclipse/cdt/internal/editor/CContentOutlinePage.java:
* src/org/eclipse/cdt/internal/editor/CEditorActionContributor.java:
* src/org/eclipse/cdt/internal/editor/CEditorMessages.properties:
* src/org/eclipse/cdt/internal/editor/CTextEditorActiionConstant.java:
* src/org/eclipse/cdt/internal/editor/ICEditorActionDefinitonsIds.java:
* src/org/eclipse/cdt/internal/editor/TogglePresentationAction.java:
2003-04-04 Alain Magloire
The way to register actions change from 2.0 to 2.1

View file

@ -36,5 +36,7 @@ public interface ICHelpContextIds {
public static final String CLEAR_CONSOLE_ACTION= PREFIX + "clear_console_action_context";
public static final String CLEAR_CONSOLE_VIEW= PREFIX + "clear_console_view_context";
public static final String TOGGLE_PRESENTATION_ACTION= PREFIX + "toggle_presentation_action_context"; //$NON-NLS-1$
public static final String TOGGLE_TEXTHOVER_ACTION= PREFIX + "toggle_texthover_action_context"; //$NON-NLS-1$
}