mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-30 20:35:38 +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());
|
||||
}
|
||||
|
||||
/**
|
||||
* @deprecated Use {@link StringListModeControl} to display string list modes.
|
||||
*/
|
||||
@SuppressWarnings("fallthrough")
|
||||
@Deprecated
|
||||
public static String getDMode() {
|
||||
String s = null;
|
||||
switch(getInt(KEY_DMODE)) {
|
||||
|
@ -132,7 +136,11 @@ public class CDTPrefUtil {
|
|||
return Messages.EnvironmentTab_19 + s;
|
||||
}
|
||||
|
||||
/**
|
||||
* @deprecated Use {@link StringListModeControl} to display string list modes.
|
||||
*/
|
||||
@SuppressWarnings("fallthrough")
|
||||
@Deprecated
|
||||
public static String getWMode() {
|
||||
String s = null;
|
||||
switch(getInt(KEY_WMODE)) {
|
||||
|
|
Loading…
Add table
Reference in a new issue