1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-24 01:15:29 +02:00

Fixes for the Include Browser

This commit is contained in:
Markus Schorn 2006-07-07 07:16:12 +00:00
parent c0faa8cedc
commit 616ab60cd0
3 changed files with 2 additions and 9 deletions

View file

@ -36,7 +36,7 @@ public class IBDropTargetListener implements DropTargetListener {
private IBViewPart fIncludeBrowser;
private ITranslationUnit fTranslationUnit;
private boolean fEnabled;
private boolean fEnabled= true;
public IBDropTargetListener(IBViewPart view) {
fIncludeBrowser= view;

View file

@ -17,19 +17,12 @@ public class IBMessages extends NLS {
private static final String BUNDLE_NAME = "org.eclipse.cdt.internal.ui.includebrowser.IBMessages"; //$NON-NLS-1$
public static String IBHistoryDropDownAction_ClearHistory_label;
public static String IBHistoryDropDownAction_tooltip;
public static String IBHistoryListAction_HistoryDialog_title;
public static String IBHistoryListAction_HistoryList_label;
public static String IBHistoryListAction_label;
public static String IBHistoryListAction_Remove_label;
public static String IBViewPart_falseInputMessage;
public static String IBViewPart_FocusOn_label;
public static String IBViewPart_hideInactive_label;
public static String IBViewPart_hideInactive_tooltip;

View file

@ -419,7 +419,7 @@ public class IBViewPart extends ViewPart
onShowFolderInLabels(isChecked());
}
};
fShowFolderInLabelsAction.setDescription(IBMessages.IBViewPart_showFolders_tooltip);
fShowFolderInLabelsAction.setToolTipText(IBMessages.IBViewPart_showFolders_tooltip);
fNext = new Action(IBMessages.IBViewPart_nextMatch_label) {
public void run() {
onNextOrPrevious(true);