Qt Code:
  1. // destinataires push button
  2. pbDestin = new QPushButton( "Destinataires", this);
  3. pbDestin->resize( QSize( 80, 20 ) );
  4. pbDestin->move( 15, 90 );
  5. QPalette p( pbDestin->palette() );
  6. p.setBrush( QPalette::Button, Qt::NoBrush );
  7. pbDestin->setPalette( p );
To copy to clipboard, switch view to plain text mode 

This won't work. What am I doing wrong ?