Problem in GetInitialView function

Hello everyone,

I'have made a stupid error by changing the name of my diffents files in a Complex DataField project.

I've changed the name of the app everywhere i had to (the folders, the manifest, the differents files, and also in the code where it was necessary). But now i have an error in my NewNameApp.mc file.

Before i had :

    function getInitialView() {
        return [ new OldNameView() ];
    }

That i changed in : 

    function getInitialView() {
        return [ new NewNameView() ];
    }

And now i have this error : "Undefined symbol "NewNameView" detected."

And this warning : " Unable to detect scope 'NewNameView' for the symbol 'initialize'."

Does someone know what is wrong here ?

Thank you in advance,

Yann