mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-02 05:45:58 +02:00
bug 274684: Indicators of string list modes for multi-configuration edits look like debug texts
This commit is contained in:
parent
f94168572c
commit
72a3cc59be
1 changed files with 8 additions and 0 deletions
|
@ -115,7 +115,11 @@ public class CDTPrefUtil {
|
||||||
setStr(KEY_PREFTC, b.toString().trim());
|
setStr(KEY_PREFTC, b.toString().trim());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @deprecated Use {@link StringListModeControl} to display string list modes.
|
||||||
|
*/
|
||||||
@SuppressWarnings("fallthrough")
|
@SuppressWarnings("fallthrough")
|
||||||
|
@Deprecated
|
||||||
public static String getDMode() {
|
public static String getDMode() {
|
||||||
String s = null;
|
String s = null;
|
||||||
switch(getInt(KEY_DMODE)) {
|
switch(getInt(KEY_DMODE)) {
|
||||||
|
@ -132,7 +136,11 @@ public class CDTPrefUtil {
|
||||||
return Messages.EnvironmentTab_19 + s;
|
return Messages.EnvironmentTab_19 + s;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @deprecated Use {@link StringListModeControl} to display string list modes.
|
||||||
|
*/
|
||||||
@SuppressWarnings("fallthrough")
|
@SuppressWarnings("fallthrough")
|
||||||
|
@Deprecated
|
||||||
public static String getWMode() {
|
public static String getWMode() {
|
||||||
String s = null;
|
String s = null;
|
||||||
switch(getInt(KEY_WMODE)) {
|
switch(getInt(KEY_WMODE)) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue