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
50f5eb37
Commit
50f5eb37
authored
Apr 02, 2010
by
charras
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed wxWidget 2.9 compatibility problem.
parent
e5bfcbbd
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
CMakeLists.txt
demos/CMakeLists.txt
+1
-1
class_sch_cmp_field.cpp
eeschema/class_sch_cmp_field.cpp
+4
-4
No files found.
demos/CMakeLists.txt
View file @
50f5eb37
install
(
DIRECTORY ecc83 electric flat_hierarchy interf_u microwave
install
(
DIRECTORY
complex_hierarchy
ecc83 electric flat_hierarchy interf_u microwave
pic_programmer pspice
"sonde xilinx"
test_xil_95108 video
DESTINATION
${
KICAD_DEMOS
}
COMPONENT resources
...
...
eeschema/class_sch_cmp_field.cpp
View file @
50f5eb37
...
...
@@ -434,14 +434,14 @@ bool SCH_FIELD::Matches( wxFindReplaceData& aSearchData, void * aAuxData )
int
part_id
=
pSch
->
GetUnitSelection
(
sheet
);
#if defined(KICAD_GOST)
fulltext
.
Append
(
'.'
);
part_id
=
'1'
-
1
+
part_id
;
part_id
+=
'1'
-
1
;
#else
part_id
=
'A'
-
1
+
part_id
;
part_id
+=
'A'
-
1
;
#endif
fulltext
.
Append
(
part_id
);
fulltext
.
Append
(
(
char
)
part_id
);
}
return
SCH_ITEM
::
Matches
(
fulltext
,
aSearchData
);
}
return
SCH_ITEM
::
Matches
(
m_Text
,
aSearchData
);
}
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