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
86a6c4de
Commit
86a6c4de
authored
Aug 03, 2010
by
Jason Oster
Committed by
Wayne Stambaugh
Aug 03, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix EESchema crash bug on Mac with wxWidgets 2.9
parent
d24caad2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
eeschema.cpp
eeschema/eeschema.cpp
+4
-1
No files found.
eeschema/eeschema.cpp
View file @
86a6c4de
...
...
@@ -104,7 +104,10 @@ void WinEDA_App::MacOpenFile( const wxString &fileName )
wxFileName
filename
=
fileName
;
WinEDA_SchematicFrame
*
frame
=
((
WinEDA_SchematicFrame
*
)
GetTopWindow
());
if
(
!
filename
.
FileExists
())
if
(
!
frame
)
return
;
if
(
!
filename
.
FileExists
()
)
return
;
frame
->
LoadOneEEProject
(
fileName
,
false
);
...
...
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