mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
fix multiple enum definition
This commit is contained in:
parent
68a37e44ab
commit
b1681daaab
@ -40,6 +40,7 @@
|
||||
#include "qucsfilter.h"
|
||||
#include "helpdialog.h"
|
||||
#include "material_props.h"
|
||||
#include "../qucs/extsimkernels/spicecompat.h"
|
||||
|
||||
QucsFilter::QucsFilter()
|
||||
{
|
||||
|
@ -30,9 +30,9 @@ class QLabel;
|
||||
class QIntValidator;
|
||||
class QDoubleValidator;
|
||||
|
||||
namespace spicecompat {
|
||||
enum Simulator {simNgspice = 0, simXyceSer = 1, simXycePar = 2, simSpiceOpus = 3, simQucsator = 4, simNotSpecified=10};
|
||||
}
|
||||
//namespace spicecompat {
|
||||
// enum Simulator {simNgspice = 0, simXyceSer = 1, simXycePar = 2, simSpiceOpus = 3, simQucsator = 4, simNotSpecified=10};
|
||||
//}
|
||||
|
||||
struct tQucsSettings {
|
||||
int x, y; // position of main window
|
||||
|
@ -23,6 +23,7 @@
|
||||
|
||||
#include <QApplication>
|
||||
#include "qucspowercombiningtool.h"
|
||||
#include "../qucs/extsimkernels/spicecompat.h"
|
||||
|
||||
struct tQucsSettings QucsSettings;
|
||||
|
||||
|
@ -29,9 +29,9 @@
|
||||
#include <QSvgWidget>
|
||||
#include <QDebug>
|
||||
|
||||
namespace spicecompat {
|
||||
enum Simulator {simNgspice = 0, simXyceSer = 1, simXycePar = 2, simSpiceOpus = 3, simQucsator = 4, simNotSpecified=10};
|
||||
}
|
||||
//namespace spicecompat {
|
||||
// enum Simulator {simNgspice = 0, simXyceSer = 1, simXycePar = 2, simSpiceOpus = 3, simQucsator = 4, simNotSpecified=10};
|
||||
//}
|
||||
|
||||
struct tQucsSettings {
|
||||
int x, y; // position of main window
|
||||
|
@ -189,8 +189,8 @@ void SimSettingsDialog::slotApply()
|
||||
|
||||
void SimSettingsDialog::slotCancel()
|
||||
{
|
||||
if (QucsSettings.DefaultSimulator == spicecompat::simNotSpecified)
|
||||
QucsSettings.DefaultSimulator = spicecompat::simQucsator;
|
||||
//if (QucsSettings.DefaultSimulator == spicecompat::simNotSpecified)
|
||||
//QucsSettings.DefaultSimulator = spicecompat::simQucsator;
|
||||
reject();
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user