problem [ not maching function for call to 'UTFT::UTFT(int,int,int,int) ]

From the error message it looks like the UTFT constructor is being called with four integers (and failing because there is no constructor that takes four integers). But in your code the constructor is called with five values (the last four being integers):

UTFT    myGLCD(ITDB32S,38,39,40,41);

I don't know what is causing that but I would double-check the constructor documentation to make sure you are passing the right arguments in the right order.