mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-23 14:42:11 +02:00
bug 272432: getBaseId()
This commit is contained in:
parent
8fd82b9735
commit
4f4bdf2cbf
1 changed files with 2 additions and 2 deletions
|
@ -119,7 +119,7 @@ public class AppendToMBSStringOptionValue extends ProcessRunner {
|
|||
boolean modified = false;
|
||||
String lowerId = id.toLowerCase();
|
||||
for (IOption option : options) {
|
||||
if (option.getId().toLowerCase().matches(lowerId)) {
|
||||
if (option.getBaseId().toLowerCase().matches(lowerId)) {
|
||||
if (option.getValueType() == IOption.STRING) {
|
||||
String oldValue = option.getStringValue();
|
||||
String newValue = oldValue + value;
|
||||
|
@ -135,7 +135,7 @@ public class AppendToMBSStringOptionValue extends ProcessRunner {
|
|||
boolean modified = false;
|
||||
String lowerId = id.toLowerCase();
|
||||
for (IOption option : options) {
|
||||
if (option.getId().toLowerCase().matches(lowerId)) {
|
||||
if (option.getBaseId().toLowerCase().matches(lowerId)) {
|
||||
if (option.getValueType() == IOption.STRING) {
|
||||
String oldValue = option.getStringValue();
|
||||
String newValue = oldValue + value;
|
||||
|
|
Loading…
Add table
Reference in a new issue