Ok at last I made it work:

instead of:
Qt Code:
  1. searchedAuthor = QString::fromAscii(author);
To copy to clipboard, switch view to plain text mode 

I used :
Qt Code:
  1. searchedAuthor = QString::fromUtf8(author);
To copy to clipboard, switch view to plain text mode 

and now everything works perfectly, thank you all...