mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-09 18:56:02 +02:00
Fixes warnings.
This commit is contained in:
parent
a2457049ee
commit
2156961db1
1 changed files with 2 additions and 2 deletions
|
@ -1619,7 +1619,7 @@ public class NewClassCreationWizardPage extends NewElementWizardPage {
|
||||||
{
|
{
|
||||||
if (parent instanceof PDOMBinding)
|
if (parent instanceof PDOMBinding)
|
||||||
{
|
{
|
||||||
buf.insert(0, ((PDOMBinding)parent).getName() + "::");
|
buf.insert(0, ((PDOMBinding)parent).getName() + "::"); //$NON-NLS-1$
|
||||||
}
|
}
|
||||||
parent = parent.getParentNode();
|
parent = parent.getParentNode();
|
||||||
}
|
}
|
||||||
|
@ -1643,7 +1643,7 @@ public class NewClassCreationWizardPage extends NewElementWizardPage {
|
||||||
}
|
}
|
||||||
|
|
||||||
IQualifiedTypeName typeName = new QualifiedTypeName(className);
|
IQualifiedTypeName typeName = new QualifiedTypeName(className);
|
||||||
if (typeName.isQualified()) { //$NON-NLS-1$
|
if (typeName.isQualified()) {
|
||||||
status.setError(NewClassWizardMessages.getString("NewClassCreationWizardPage.error.QualifiedClassName")); //$NON-NLS-1$
|
status.setError(NewClassWizardMessages.getString("NewClassCreationWizardPage.error.QualifiedClassName")); //$NON-NLS-1$
|
||||||
return status;
|
return status;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue