Re: qt file open dialog

2002-11-14 Thread John Levon
On Thu, Nov 14, 2002 at 11:48:16AM +0100, Juergen Spitzmueller wrote: > > has "Save" instead of "Open" button... > > This is because of: > dlg.setMode(QFileDialog::AnyFile); Qt really is moronic. We want to be able to open a new file too, I think. regards john -- Khendon's Law: If the same poi

Re: qt file open dialog

2002-11-14 Thread Juergen Spitzmueller
Edwin Leuven wrote: > has "Save" instead of "Open" button... This is because of: dlg.setMode(QFileDialog::AnyFile); (FileDialog.C, 67) which is needed to save a new file (with qt3). I suppose the solution is to distinct between an open and a save file dialog. Jürgen.

qt file open dialog

2002-11-14 Thread Edwin Leuven
has "Save" instead of "Open" button...