Hi to all,
I'm using Qt 2009.03 version and getting strange behavior with the following code:

Qt Code:
  1. QString nomeFile;
  2. nomeFile = QString
  3. (
  4. "Export_%1.txt"
  5. )
  6. .arg(QDate::currentDate().toString("yyyy-MM-dd"));
  7.  
  8. qDebug() << "nomeFile : " << nomeFile;
  9. //show exactly "Export_2009-07-23.txt"
  10.  
  11. QString nomeFileScelto = QFileDialog::getSaveFileName
  12. (this, tr("Salva il File"), nomeFile,
  13. tr("File da Esportare (Export*.txt)"));
To copy to clipboard, switch view to plain text mode 

it opens a Dialog (S.O.: Windows XP) without the suggested file name (nomeFile), just a blank box while the filter is OK!

The previous release didn't have that problem, if I remember right, any ideas?