mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
Fix for 199433: Code Style/Profile/Braces Namespace option missing
This commit is contained in:
parent
1cba2fab4e
commit
e7c05f8fa5
3 changed files with 3 additions and 3 deletions
|
@ -124,7 +124,7 @@ public class BracesTabPage extends ModifyDialogTabPage {
|
|||
|
||||
final Group group= createGroup(numColumns, composite, FormatterMessages.BracesTabPage_group_brace_positions_title);
|
||||
createExtendedBracesCombo(group, numColumns, FormatterMessages.BracesTabPage_option_class_declaration, DefaultCodeFormatterConstants.FORMATTER_BRACE_POSITION_FOR_TYPE_DECLARATION);
|
||||
// createExtendedBracesCombo(group, numColumns, FormatterMessages.BracesTabPage_option_anonymous_class_declaration, DefaultCodeFormatterConstants.FORMATTER_BRACE_POSITION_FOR_ANONYMOUS_TYPE_DECLARATION);
|
||||
createExtendedBracesCombo(group, numColumns, FormatterMessages.BracesTabPage_option_namespace_declaration, DefaultCodeFormatterConstants.FORMATTER_BRACE_POSITION_FOR_NAMESPACE_DECLARATION);
|
||||
// createExtendedBracesCombo(group, numColumns, FormatterMessages.BracesTabPage_option_constructor_declaration, DefaultCodeFormatterConstants.FORMATTER_BRACE_POSITION_FOR_CONSTRUCTOR_DECLARATION);
|
||||
createExtendedBracesCombo(group, numColumns, FormatterMessages.BracesTabPage_option_method_declaration, DefaultCodeFormatterConstants.FORMATTER_BRACE_POSITION_FOR_METHOD_DECLARATION);
|
||||
// createExtendedBracesCombo(group, numColumns, FormatterMessages.BracesTabPage_option_enum_declaration, DefaultCodeFormatterConstants.FORMATTER_BRACE_POSITION_FOR_ENUM_DECLARATION);
|
||||
|
|
|
@ -339,7 +339,7 @@ final class FormatterMessages extends NLS {
|
|||
public static String BracesTabPage_position_next_line_on_wrap;
|
||||
public static String BracesTabPage_group_brace_positions_title;
|
||||
public static String BracesTabPage_option_class_declaration;
|
||||
// public static String BracesTabPage_option_anonymous_class_declaration;
|
||||
public static String BracesTabPage_option_namespace_declaration;
|
||||
public static String BracesTabPage_option_method_declaration;
|
||||
// public static String BracesTabPage_option_constructor_declaration;
|
||||
public static String BracesTabPage_option_blocks;
|
||||
|
|
|
@ -389,7 +389,7 @@ BracesTabPage_position_next_line_on_wrap=Next line on wrap
|
|||
|
||||
BracesTabPage_group_brace_positions_title=Brace positions
|
||||
BracesTabPage_option_class_declaration=&Class declaration:
|
||||
#BracesTabPage_option_anonymous_class_declaration=Anon&ymous class declaration:
|
||||
BracesTabPage_option_namespace_declaration=&Namespace declaration:
|
||||
BracesTabPage_option_method_declaration=Met&hod declaration:
|
||||
#BracesTabPage_option_constructor_declaration=Constr&uctor declaration:
|
||||
BracesTabPage_option_blocks=&Blocks:
|
||||
|
|
Loading…
Add table
Reference in a new issue