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
0d3fc601
Commit
0d3fc601
authored
Jan 18, 2009
by
charras
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Found why remove unused thermal stubs fails sometimes.Solved
parent
9f8e1d9d
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
134 additions
and
101 deletions
+134
-101
CHANGELOG.txt
CHANGELOG.txt
+8
-1
id.h
include/id.h
+0
-11
pcbframe.cpp
pcbnew/pcbframe.cpp
+2
-2
zones_convert_brd_items_to_polygons.cpp
pcbnew/zones_convert_brd_items_to_polygons.cpp
+124
-87
No files found.
CHANGELOG.txt
View file @
0d3fc601
...
@@ -5,7 +5,14 @@ Started 2007-June-11
...
@@ -5,7 +5,14 @@ Started 2007-June-11
Please add newer entries at the top, list the date and your name with
Please add newer entries at the top, list the date and your name with
email address.
email address.
2009-Jan-11 UPDATE Wayne Stambaugh <stambaughw@verizon.net>
2009-Jan-17 UPDATE Jean-Pierre Charras <jean-pierre.charras@inpg.fr>
================================================================================
++pcbnew:
Found why remove unused thermal stubs fails sometimes:
Only the first filled area in a zone was tested.
Solved.
2009-Jan-18 UPDATE Wayne Stambaugh <stambaughw@verizon.net>
================================================================================
================================================================================
++All
++All
* Replace Kicad file history implementation with wxFileHistory.
* Replace Kicad file history implementation with wxFileHistory.
...
...
include/id.h
View file @
0d3fc601
...
@@ -48,17 +48,6 @@ enum main_id {
...
@@ -48,17 +48,6 @@ enum main_id {
ID_LOAD_PROJECT
,
ID_LOAD_PROJECT
,
ID_LOAD_ONE_SHEET
,
ID_LOAD_ONE_SHEET
,
ID_NEW_PROJECT
,
ID_NEW_PROJECT
,
ID_LOAD_FILE_1
,
ID_LOAD_FILE_2
,
ID_LOAD_FILE_3
,
ID_LOAD_FILE_4
,
ID_LOAD_FILE_5
,
ID_LOAD_FILE_6
,
ID_LOAD_FILE_7
,
ID_LOAD_FILE_8
,
ID_LOAD_FILE_9
,
ID_LOAD_FILE_10
,
ID_SAVE_PROJECT
,
ID_SAVE_PROJECT
,
ID_SAVE_ONE_SHEET
,
ID_SAVE_ONE_SHEET
,
ID_SAVE_ONE_SHEET_AS
,
ID_SAVE_ONE_SHEET_AS
,
...
...
pcbnew/pcbframe.cpp
View file @
0d3fc601
...
@@ -48,9 +48,9 @@ BEGIN_EVENT_TABLE( WinEDA_PcbFrame, WinEDA_BasePcbFrame )
...
@@ -48,9 +48,9 @@ BEGIN_EVENT_TABLE( WinEDA_PcbFrame, WinEDA_BasePcbFrame )
EVT_MENU
(
ID_MENU_SAVE_BOARD
,
WinEDA_PcbFrame
::
Files_io
)
EVT_MENU
(
ID_MENU_SAVE_BOARD
,
WinEDA_PcbFrame
::
Files_io
)
EVT_MENU
(
ID_MENU_APPEND_FILE
,
WinEDA_PcbFrame
::
Files_io
)
EVT_MENU
(
ID_MENU_APPEND_FILE
,
WinEDA_PcbFrame
::
Files_io
)
EVT_MENU
(
ID_MENU_SAVE_BOARD_AS
,
WinEDA_PcbFrame
::
Files_io
)
EVT_MENU
(
ID_MENU_SAVE_BOARD_AS
,
WinEDA_PcbFrame
::
Files_io
)
EVT_MENU_RANGE
(
wxID_FILE1
,
wxID_FILE9
,
WinEDA_PcbFrame
::
OnFileHistory
)
EVT_MENU
(
ID_GEN_PLOT
,
WinEDA_PcbFrame
::
ToPlotter
)
EVT_MENU
(
ID_GEN_PLOT
,
WinEDA_PcbFrame
::
ToPlotter
)
EVT_MENU_RANGE
(
ID_LOAD_FILE_1
,
ID_LOAD_FILE_10
,
WinEDA_PcbFrame
::
Files_io
)
EVT_MENU
(
ID_GEN_EXPORT_SPECCTRA
,
WinEDA_PcbFrame
::
ExportToSpecctra
)
EVT_MENU
(
ID_GEN_EXPORT_SPECCTRA
,
WinEDA_PcbFrame
::
ExportToSpecctra
)
EVT_MENU
(
ID_GEN_EXPORT_FILE_GENCADFORMAT
,
WinEDA_PcbFrame
::
ExportToGenCAD
)
EVT_MENU
(
ID_GEN_EXPORT_FILE_GENCADFORMAT
,
WinEDA_PcbFrame
::
ExportToGenCAD
)
...
...
pcbnew/zones_convert_brd_items_to_polygons.cpp
View file @
0d3fc601
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