mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-23 08:55:25 +02:00
Fix for 66428 - I18N: Managed build "All Options" label chopped
This commit is contained in:
parent
8bfb8707f0
commit
612551d59c
3 changed files with 4 additions and 5 deletions
|
@ -73,7 +73,7 @@ Option.Posix.Nostdinc=Do not search system directories (-nostdinc)
|
|||
Option.Posix.DefSym=Defined symbols (-D)
|
||||
Option.Posix.UndefSym=Undefined symbols (-U)
|
||||
|
||||
Option.Posix.InclPaths=Include Paths (-I)
|
||||
Option.Posix.InclPaths=Include paths (-I)
|
||||
|
||||
Option.Posix.OptLevel=Optimization Level
|
||||
Option.Posix.Optimize.None=None (-O0)
|
||||
|
|
|
@ -110,7 +110,7 @@ Multiline.error.message=Please give correct input
|
|||
# ----------- Default flag names -----------
|
||||
BuildToolSettingsPage.compilerflags=Other flags
|
||||
BuildToolSettingsPage.linkerflags=Linker flags
|
||||
BuildToolSettingsPage.alloptions=All Options
|
||||
BuildToolSettingsPage.alloptions=All options:
|
||||
|
||||
# ----------- File List Control -----------
|
||||
FileListControl.add=Add
|
||||
|
|
|
@ -236,11 +236,10 @@ public class MultiLineTextFieldEditor extends FieldEditor {
|
|||
protected void doFillIntoGrid(Composite parent, int numColumns) {
|
||||
|
||||
title = new Label(parent, SWT.UP);
|
||||
title.setFont(parent.getFont());
|
||||
this.compTitle = getLabelText();
|
||||
title.setText(this.compTitle);
|
||||
GridData gd1 = new GridData(GridData.VERTICAL_ALIGN_BEGINNING);
|
||||
gd1.widthHint = 80;
|
||||
title.setLayoutData(gd1);
|
||||
title.setLayoutData(new GridData(GridData.VERTICAL_ALIGN_BEGINNING));
|
||||
|
||||
textField = getTextControl(parent);
|
||||
GridData gd = new GridData(GridData.FILL_HORIZONTAL);
|
||||
|
|
Loading…
Add table
Reference in a new issue