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
d9af562f
Commit
d9af562f
authored
Dec 12, 2011
by
Wayne Stambaugh
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix a minor bug in my last commit that caused the debug build to fail.
parent
768ec258
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
2 deletions
+5
-2
netlist.cpp
eeschema/netlist.cpp
+3
-0
netlist.h
eeschema/netlist.h
+2
-2
No files found.
eeschema/netlist.cpp
View file @
d9af562f
...
...
@@ -46,6 +46,9 @@
#include <boost/foreach.hpp>
const
SCH_SHEET_PATH
BOM_LABEL
::
emptySheetPath
;
// Buffer to build the list of items used in netlist and erc calculations
NETLIST_OBJECT_LIST
g_NetObjectslist
;
...
...
eeschema/netlist.h
View file @
d9af562f
...
...
@@ -485,11 +485,11 @@ class BOM_LABEL
// have to store it here since the object references will be duplicated.
SCH_SHEET_PATH
m_sheetPath
;
//composed of UIDs
static
SCH_SHEET_PATH
emptySheetPath
;
static
const
SCH_SHEET_PATH
emptySheetPath
;
public
:
BOM_LABEL
(
KICAD_T
aType
=
TYPE_NOT_INIT
,
SCH_ITEM
*
aLabel
=
NULL
,
const
SCH_SHEET_PATH
&
aSheetPath
=
emptySheetPath
)
const
SCH_SHEET_PATH
&
aSheetPath
=
emptySheetPath
)
:
m_type
(
aType
)
,
m_label
(
aLabel
)
,
m_sheetPath
(
aSheetPath
)
...
...
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