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
4582fb9c
Commit
4582fb9c
authored
Dec 07, 2009
by
dickelbeck
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix memory leak, comments
parent
a21a1931
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
5 deletions
+6
-5
dialog_layers_setup2.cpp
pcbnew/dialog_layers_setup2.cpp
+6
-5
No files found.
pcbnew/dialog_layers_setup2.cpp
View file @
4582fb9c
...
...
@@ -172,8 +172,8 @@ struct IDs
/**
* Function getIDs
* maps \a aLayerNumber to the
two
wx IDs for that layer which are
* the layer name control ID
and the checkbox control ID.
* maps \a aLayerNumber to the wx IDs for that layer which are
* the layer name control ID
, checkbox control ID, and choice control ID
*/
static
IDs
getIDs
(
int
aLayerNumber
)
{
...
...
@@ -639,9 +639,10 @@ bool DIALOG_LAYERS_SETUP::TestDataValidity()
void
DisplayDialogLayerSetup
(
WinEDA_PcbFrame
*
parent
)
{
DIALOG_LAYERS_SETUP
*
frame
=
new
DIALOG_LAYERS_SETUP
(
parent
);
frame
->
ShowModal
();
frame
->
Destroy
();
DIALOG_LAYERS_SETUP
frame
(
parent
);
frame
.
ShowModal
();
frame
.
Destroy
();
}
//==============================================================================
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