Commit 95ea4f6c authored by Dick Hollenbeck's avatar Dick Hollenbeck

remove a static wxString constructor which was out of sequence with another...

remove a static wxString constructor which was out of sequence with another dependent one, at least with one toolchain.
parent 953bf1d9
...@@ -36,7 +36,7 @@ ...@@ -36,7 +36,7 @@
// This will get mapped to "kicad_default" in the specctra_export. // This will get mapped to "kicad_default" in the specctra_export.
const wxString NETCLASS::Default = wxT("Default"); const wxChar NETCLASS::Default[] = wxT( "Default" );
// Initial values for netclass initialization // Initial values for netclass initialization
int NETCLASS::DEFAULT_CLEARANCE = DMils2iu( 100 ); // track to track and track to pads clearance int NETCLASS::DEFAULT_CLEARANCE = DMils2iu( 100 ); // track to track and track to pads clearance
......
...@@ -80,7 +80,7 @@ protected: ...@@ -80,7 +80,7 @@ protected:
public: public:
static const wxString Default; ///< the name of the default NETCLASS static const wxChar Default[]; ///< the name of the default NETCLASS
/** /**
* Constructor * Constructor
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment