mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
spicedialog.cpp: upgraded Q3FileDialog to QFileDialog
This commit is contained in:
parent
2f641378ee
commit
48518bde26
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user