mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-08 18:26:01 +02:00
Committed the patch from David Daoust that fixes the string externalization warnings
This commit is contained in:
parent
3e9660ea3e
commit
db48cbe5a9
3 changed files with 3 additions and 3 deletions
|
@ -756,7 +756,7 @@ public class ToolsSettingsBlock extends AbstractCOptionPage {
|
|||
|
||||
// Build the match name.
|
||||
do {
|
||||
catName = catOrTool.getName() + "|" + catName;
|
||||
catName = catOrTool.getName() + "|" + catName; //$NON-NLS-1$
|
||||
if (catOrTool instanceof ITool) break;
|
||||
else if (catOrTool instanceof IOptionCategory) {
|
||||
catOrTool = ((IOptionCategory)catOrTool).getOwner();
|
||||
|
|
|
@ -49,7 +49,7 @@ public class ToolListLabelProvider extends LabelProvider {
|
|||
img = manager.createImageWithDefault(descriptor);
|
||||
if (img == null) {
|
||||
// Report error by displaying a warning message
|
||||
System.err.println("Couldn't create image from URL \"" + url + "\", to display icon for Tool Options." ); //$NON-NLS-1$
|
||||
System.err.println("Couldn't create image from URL \"" + url + "\", to display icon for Tool Options." ); //$NON-NLS-1$ //$NON-NLS-2$
|
||||
}
|
||||
}
|
||||
return img;
|
||||
|
|
Loading…
Add table
Reference in a new issue