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
7c171870
Commit
7c171870
authored
Nov 07, 2011
by
jean-pierre charras
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Pcbnew: Fix typo in 2 filenames. Add comments in ratsnest.cpp.
Fix bug 887202.
parent
936d831b
Changes
5
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
131 additions
and
124 deletions
+131
-124
hotkeys_basic.cpp
common/hotkeys_basic.cpp
+4
-4
CMakeLists.txt
pcbnew/CMakeLists.txt
+1
-1
minimun_spanning_tree.cpp
pcbnew/minimun_spanning_tree.cpp
+2
-2
minimun_spanning_tree.h
pcbnew/minimun_spanning_tree.h
+1
-1
ratsnest.cpp
pcbnew/ratsnest.cpp
+123
-116
No files found.
common/hotkeys_basic.cpp
View file @
7c171870
...
...
@@ -689,7 +689,7 @@ void EDA_BASE_FRAME::ImportHotkeyConfigFromFile( struct EDA_HOTKEY_CONFIG* aDesc
mask
,
this
,
wxFD_OPEN
,
TRUE
);
true
);
if
(
filename
.
IsEmpty
()
)
return
;
...
...
@@ -710,14 +710,14 @@ void EDA_BASE_FRAME::ExportHotkeyConfigToFile( struct EDA_HOTKEY_CONFIG* aDescLi
wxString
path
=
wxGetCwd
();
wxString
filename
;
filename
=
EDA_FileSelector
(
_
(
"
Read
Hotkey Configuration File:"
),
filename
=
EDA_FileSelector
(
_
(
"
Write
Hotkey Configuration File:"
),
path
,
filename
,
ext
,
mask
,
this
,
wxFD_OPEN
,
TRUE
);
wxFD_OPEN
|
wxFD_SAVE
,
true
);
if
(
filename
.
IsEmpty
()
)
return
;
...
...
pcbnew/CMakeLists.txt
View file @
7c171870
...
...
@@ -132,7 +132,7 @@ set(PCBNEW_SRCS
magnetic_tracks_functions.cpp
menubar_modedit.cpp
menubar_pcbframe.cpp
min
u
mun_spanning_tree.cpp
min
i
mun_spanning_tree.cpp
mirepcb.cpp
modedit.cpp
modedit_onclick.cpp
...
...
pcbnew/min
u
mun_spanning_tree.cpp
→
pcbnew/min
i
mun_spanning_tree.cpp
View file @
7c171870
/**
* @file min
u
mun_spanning_tree.cpp
* @file min
i
mun_spanning_tree.cpp
*/
/*
...
...
@@ -31,7 +31,7 @@
#include <limits.h>
#include "min
u
mun_spanning_tree.h"
#include "min
i
mun_spanning_tree.h"
#include "class_pad.h"
/*
...
...
pcbnew/min
u
mun_spanning_tree.h
→
pcbnew/min
i
mun_spanning_tree.h
View file @
7c171870
/**
* @file min
u
mun_spanning_tree.h
* @file min
i
mun_spanning_tree.h
*/
#include <vector>
...
...
pcbnew/ratsnest.cpp
View file @
7c171870
This diff is collapsed.
Click to expand 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