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
d8a74aa7
Commit
d8a74aa7
authored
Feb 27, 2015
by
Wayne Stambaugh
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wxLog string arguement parsing assertion message fixes.
parent
d6c6b4de
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
class_libentry.cpp
eeschema/class_libentry.cpp
+4
-4
No files found.
eeschema/class_libentry.cpp
View file @
d8a74aa7
...
...
@@ -245,9 +245,9 @@ LIB_PART::LIB_PART( LIB_PART& aPart, PART_LIB* aLibrary ) :
LIB_PART
::~
LIB_PART
()
{
wxLogTrace
(
traceSchLibMem
,
wxT
(
"%s: destroying part '%s' with alias list count of %u."
),
wxT
(
"%s: destroying part '%s' with alias list count of %
ll
u."
),
GetChars
(
wxString
::
FromAscii
(
__WXFUNCTION__
)
),
GetChars
(
GetName
()
),
m_aliases
.
size
()
);
(
long
long
unsigned
)
m_aliases
.
size
()
);
// If the part is being deleted directly rather than through the library,
// delete all of the aliases.
...
...
@@ -1697,11 +1697,11 @@ LIB_ALIAS* LIB_PART::RemoveAlias( LIB_ALIAS* aAlias )
bool
rename
=
aAlias
->
IsRoot
();
wxLogTrace
(
traceSchLibMem
,
wxT
(
"%s: part:'%s', alias:'%s', alias count %u, reference count %d."
),
wxT
(
"%s: part:'%s', alias:'%s', alias count %
ll
u, reference count %d."
),
GetChars
(
wxString
::
FromAscii
(
__WXFUNCTION__
)
),
GetChars
(
m_name
),
GetChars
(
aAlias
->
GetName
()
),
m_aliases
.
size
(),
(
long
long
unsigned
)
m_aliases
.
size
(),
m_me
.
use_count
()
);
it
=
m_aliases
.
erase
(
it
);
...
...
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