mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
fix for bug 235838
This commit is contained in:
parent
54cc0907a7
commit
007fb4ba75
3 changed files with 4 additions and 0 deletions
|
@ -252,6 +252,7 @@ final class FormatterMessages extends NLS {
|
|||
public static String LineWrappingTabPage_force_split_checkbox_text;
|
||||
public static String LineWrappingTabPage_force_split_checkbox_multi_text;
|
||||
public static String LineWrappingTabPage_line_width_for_preview_label_text;
|
||||
public static String LineWrappingTabPage_line_width_for_preview_label_unit_text;
|
||||
public static String LineWrappingTabPage_group;
|
||||
public static String LineWrappingTabPage_multi_group;
|
||||
public static String LineWrappingTabPage_multiple_selections;
|
||||
|
|
|
@ -284,6 +284,7 @@ LineWrappingTabPage_indentation_policy_label_text=Indent&ation policy:
|
|||
LineWrappingTabPage_force_split_checkbox_text=&Force split
|
||||
LineWrappingTabPage_force_split_checkbox_multi_text=&Force split
|
||||
LineWrappingTabPage_line_width_for_preview_label_text=&Set line width for preview window:
|
||||
LineWrappingTabPage_line_width_for_preview_label_unit_text=character(s)
|
||||
LineWrappingTabPage_group=Settings for {0}
|
||||
LineWrappingTabPage_multi_group=Settings for {0} ({1} items)
|
||||
LineWrappingTabPage_multiple_selections=Settings for multiple selections ({0} items)
|
||||
|
|
|
@ -700,6 +700,8 @@ public class LineWrappingTabPage extends FormatterTabPage {
|
|||
fDialogSettings.put(PREF_PREVIEW_LINE_WIDTH, fPreviewPreferences.get(LINE_SPLIT));
|
||||
}
|
||||
});
|
||||
Label label = new Label(composite, SWT.WRAP);
|
||||
label.setText(FormatterMessages.LineWrappingTabPage_line_width_for_preview_label_unit_text);
|
||||
|
||||
return composite;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue