Hi,

i set the application style like this:
Qt Code:
  1. QApplication::setStyle(QStyleFactory::create(styleName));
To copy to clipboard, switch view to plain text mode 
then i will set the most appropriate style for the user's platform or desktop environment and try that:
Qt Code:
  1. QApplication::setStyle(0);
To copy to clipboard, switch view to plain text mode 
but the style don't change to the the most appropriate style!

How can i do that?

Thanks in advance,

Whitefurrows