spicedialog.cpp: upgraded Q3FileDialog to QFileDialog

This commit is contained in:
Richard C Crozier 2014-02-07 11:55:58 +00:00
parent 2f641378ee
commit 48518bde26

View File

@ -259,10 +259,11 @@ void SpiceDialog::slotButtApply()
// -------------------------------------------------------------------------
void SpiceDialog::slotButtBrowse()
{
QString s = Q3FileDialog::getOpenFileName(
QString s = QFileDialog::getOpenFileName(this,
tr("Select a file"),
lastDir.isEmpty() ? QString(".") : lastDir,
tr("SPICE netlist")+" (*.cir);;"+tr("All Files")+" (*.*)",
this, "", tr("Select a file"));
tr("SPICE netlist") + " (*.cir);;" + tr("All Files") + " (*.*)");
if(s.isEmpty()) return;
QFileInfo Info(s);