Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
K
kicad-source-mirror
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
Elphel
kicad-source-mirror
Commits
b9b80b48
Commit
b9b80b48
authored
May 27, 2014
by
Dick Hollenbeck
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
change to fatal error in kicad/kicad.cpp Kiface() stub.
parent
afc5d131
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
kicad.cpp
kicad/kicad.cpp
+5
-1
No files found.
kicad/kicad.cpp
View file @
b9b80b48
...
...
@@ -79,7 +79,11 @@ static void set_lib_env_var( const wxString& aAbsoluteArgv0 )
#include <kiface_i.h>
KIFACE_I
&
Kiface
()
{
wxASSERT
(
0
);
// should never be called, only reference is from EDA_BASE_FRAME::config();
// This function should never be called. It is only referenced from
// EDA_BASE_FRAME::config() and this is only provided to satisfy the linker,
// not to be actually called.
wxLogFatalError
(
wxT
(
"Unexpected call to Kiface() in kicad/kicad.cpp"
)
);
return
(
KIFACE_I
&
)
*
(
KIFACE_I
*
)
0
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment