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
5d306bb2
Commit
5d306bb2
authored
Oct 30, 2014
by
Marco Ciampa
Committed by
Wayne Stambaugh
Oct 30, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rename instances of module to footprint for consistency.
parent
09e20c6c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
auto_place_footprints.cpp
pcbnew/autorouter/auto_place_footprints.cpp
+1
-1
spread_footprints.cpp
pcbnew/autorouter/spread_footprints.cpp
+1
-1
No files found.
pcbnew/autorouter/auto_place_footprints.cpp
View file @
5d306bb2
...
...
@@ -278,7 +278,7 @@ void PCB_EDIT_FRAME::AutoPlaceModule( MODULE* Module, int place_mode, wxDC* DC )
while
(
(
Module
=
PickModule
(
this
,
DC
)
)
!=
NULL
)
{
// Display some info about activity, module placement can take a while:
msg
.
Printf
(
_
(
"Place
module
%d of %d"
),
cnt
,
moduleCount
);
msg
.
Printf
(
_
(
"Place
footprint
%d of %d"
),
cnt
,
moduleCount
);
SetStatusText
(
msg
);
double
initialOrient
=
Module
->
GetOrientation
();
...
...
pcbnew/autorouter/spread_footprints.cpp
View file @
5d306bb2
...
...
@@ -174,7 +174,7 @@ void PCB_EDIT_FRAME::SpreadFootprints( bool aFootprintsOutsideBoardOnly )
if
(
aFootprintsOutsideBoardOnly
&&
!
edgesExist
)
{
DisplayError
(
this
,
_
(
"Could not automatically place
module
s. No board outlines detected."
)
);
_
(
"Could not automatically place
footprint
s. No board outlines detected."
)
);
return
;
}
...
...
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