PDA

View Full Version : QFileDialog->leftPane()->hide() anything like this?



killerwookie99
26th January 2009, 17:51
Is there any function or memeber I can access that would do:
QFileDialog->leftPane()->hide()

Thanks

wysota
26th January 2009, 18:41
You'd have to use QObject::findChild() to access an apropriate object of the dialog and then call hide() on it. Of course it only applies to the non-native version of the dialog.