1
0
Fork 0
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:
Andrew Gvozdev 2010-11-22 15:42:38 +00:00
parent f94168572c
commit 72a3cc59be

View file

@ -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)) {