Salut,
J'ai eu une erreur lors de la compilation de mes fichiers java, mais j'ai pa compris cette erreur,
si vous avez une idée, SVP aidez moi.

L'errrue est:
"C:\electric\com\sun\electric\tool\user\CircuitChanges.java:1821:
non-static method closewnd(com.sun.electric.database.hierarchy.Cell)
cannot be referenced from a static context
closewnd(cell);"
L'appel de la method est: closewnd(cell);
La method est:
public void closewnd(Cell cell)
{
for(Iterator it = WindowFrame.getWindows(); it.hasNext(); )
{
WindowFrame wf = (WindowFrame)it.next();
WindowContent content = wf.getContent();
if (content == null) continue;
if (content.getCell() == cell)
{
if (!(content instanceof EditWindow))
{
wf.setCellWindow(null);
} else
{
content.setCell(null, null);
content.fullRepaint();
}
}
}
}