Skip to main content
aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorOleg Krasilnikov2008-02-13 11:27:44 +0000
committerOleg Krasilnikov2008-02-13 11:27:44 +0000
commit466f54cc9177ef34880d3a4950f5d72e0755d60c (patch)
tree20ea6faedcd6a1f26df82c0fab28195aec49528c /core
parent51beaeaa4252af007359f2b5943a550ac130eb64 (diff)
downloadorg.eclipse.cdt-466f54cc9177ef34880d3a4950f5d72e0755d60c.tar.gz
org.eclipse.cdt-466f54cc9177ef34880d3a4950f5d72e0755d60c.tar.xz
org.eclipse.cdt-466f54cc9177ef34880d3a4950f5d72e0755d60c.zip
Small changes made while Multi-cfg implementation
Diffstat (limited to 'core')
-rw-r--r--core/org.eclipse.cdt.ui/src/org/eclipse/cdt/ui/newui/SymbolTab.java7
1 files changed, 3 insertions, 4 deletions
diff --git a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/ui/newui/SymbolTab.java b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/ui/newui/SymbolTab.java
index 61d3b3c8b39..a1dc0fcede2 100644
--- a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/ui/newui/SymbolTab.java
+++ b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/ui/newui/SymbolTab.java
@@ -65,15 +65,15 @@ public class SymbolTab extends AbstractLangsListTab {
return null;
}
- public int getKind() { return ICSettingEntry.MACRO; }
+ public int getKind() {
+ return ICSettingEntry.MACRO;
+ }
// Specific version of "update()" for Symbols tab only
public void update() {
if (lang != null) {
int x = table.getSelectionIndex();
if (x == -1) x = 0;
-
-// incs = new LinkedList<ICLanguageSettingEntry>(lang.getSettingEntriesList(getKind()));
incs = getIncs();
ArrayList<ICLanguageSettingEntry> lst = new ArrayList<ICLanguageSettingEntry>();
if (incs != null) {
@@ -91,5 +91,4 @@ public class SymbolTab extends AbstractLangsListTab {
updateLbs(lb1, lb2);
updateButtons();
}
-
}

Back to the top