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
0648adda
Commit
0648adda
authored
Sep 07, 2011
by
Andrey Fedorushkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add forgotten file to bzr3107, add GOST to KICAD_BULD_VERSION if defined KICAD_GOST
parent
9f98995a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
31 additions
and
1 deletion
+31
-1
build_version.cpp
common/build_version.cpp
+5
-1
class_macros_record.h
include/class_macros_record.h
+26
-0
No files found.
common/build_version.cpp
View file @
0648adda
...
@@ -6,7 +6,11 @@
...
@@ -6,7 +6,11 @@
#endif
#endif
#ifndef KICAD_BUILD_VERSION
#ifndef KICAD_BUILD_VERSION
#define KICAD_BUILD_VERSION "(2011-aug-04)"
#if defined KICAD_GOST
# define KICAD_BUILD_VERSION "(2011-aug-04 GOST)"
#else
# define KICAD_BUILD_VERSION "(2011-aug-04)"
#endif
#endif
#endif
...
...
include/class_macros_record.h
0 → 100644
View file @
0648adda
/****************************************/
/* Macros: used to record and play */
/* sequence hotkeys and their positions */
/****************************************/
#ifndef _CLASS_MACROS_RECORD_H
#define _CLASS_MACROS_RECORD_H
#include <list>
class
MACROS_RECORD
{
public
:
int
m_HotkeyCode
;
int
m_Idcommand
;
wxPoint
m_Position
;
};
class
MACROS_RECORDED
{
public
:
wxPoint
m_StartPosition
;
std
::
list
<
MACROS_RECORD
>
m_Record
;
};
#endif // _CLASS_MACROS_RECORD_H
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