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
f49e9a28
Commit
f49e9a28
authored
May 19, 2014
by
Dick Hollenbeck
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix compiler warnings
parent
cfa67aa2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
common_actions.cpp
pcbnew/tools/common_actions.cpp
+4
-4
No files found.
pcbnew/tools/common_actions.cpp
View file @
f49e9a28
...
...
@@ -208,11 +208,11 @@ TOOL_ACTION COMMON_ACTIONS::layerAlphaDec( "pcbnew.layerAlphaDec",
// Grid control
TOOL_ACTION
COMMON_ACTIONS
::
gridFast1
(
"pcbnew.gridFast1"
,
AS_GLOBAL
,
MD_ALT
+
'1'
,
AS_GLOBAL
,
MD_ALT
+
int
(
'1'
)
,
""
,
""
);
TOOL_ACTION
COMMON_ACTIONS
::
gridFast2
(
"pcbnew.gridFast2"
,
AS_GLOBAL
,
MD_ALT
+
'2'
,
AS_GLOBAL
,
MD_ALT
+
int
(
'2'
)
,
""
,
""
);
TOOL_ACTION
COMMON_ACTIONS
::
gridNext
(
"pcbnew.gridNext"
,
...
...
@@ -220,7 +220,7 @@ TOOL_ACTION COMMON_ACTIONS::gridNext( "pcbnew.gridNext",
""
,
""
);
TOOL_ACTION
COMMON_ACTIONS
::
gridPrev
(
"pcbnew.gridPrev"
,
AS_GLOBAL
,
MD_CTRL
+
'`'
,
AS_GLOBAL
,
MD_CTRL
+
int
(
'`'
)
,
""
,
""
);
...
...
@@ -249,7 +249,7 @@ TOOL_ACTION COMMON_ACTIONS::resetCoords( "pcbnew.resetCoords",
""
,
""
);
TOOL_ACTION
COMMON_ACTIONS
::
switchUnits
(
"pcbnew.switchUnits"
,
AS_GLOBAL
,
MD_CTRL
+
'U'
,
AS_GLOBAL
,
MD_CTRL
+
int
(
'U'
)
,
""
,
""
);
TOOL_ACTION
COMMON_ACTIONS
::
showHelp
(
"pcbnew.showHelp"
,
...
...
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