Hi, i'm working on an avr32 running qt 4.5.2 and i'm trying to display a button with an icon.
In qt designer i included the image inside the resources and assign the icon to the button.
But on the target i can't see the icon on the button, i've also tried to copy the image on the target with no luck.
Another question, i'm hiding the cursor with:
Qt Code:
  1. QApplication app(argc, argv);
  2. qApp->setOverrideCursor(Qt::BlankCursor);
To copy to clipboard, switch view to plain text mode 

but once my app start i still can see the cursor...as soon as i touch the screen the cursor finally disappear.

Any hints?

Thanks
Andrea