Hey guys

I need to create a file dialog where one can pick directories only with multiselection and there must be network places.

I cannot do all this stuff using the standard possibilities of QFileDialog. The closest method to my problem is QFileDialog::getExistingDirectory (there are only directories, multiselection and network places -- all I need) but it has a bug -- when one selects several folders the method returns "" (an empty string). I tried to rewrite getExistingDirectory in QFileDialog.cpp but in that case I have to rebuild qt dll (QtCore.dll as far as I remember). Maybe there is an easier solution?

How can I solve my problem? I need some help, please.