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
ef150dd4
Commit
ef150dd4
authored
Apr 21, 2008
by
charras
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Annotate Dialog enhancement.
parent
08bb8976
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
13 deletions
+0
-13
annotate_dialog.cpp
eeschema/annotate_dialog.cpp
+0
-13
No files found.
eeschema/annotate_dialog.cpp
View file @
ef150dd4
...
...
@@ -317,19 +317,11 @@ void WinEDA_AnnotateFrame::OnCancelClick( wxCommandEvent& event )
bool
WinEDA_AnnotateFrame
::
GetLevel
(
void
)
{
wxASSERT_MSG
(
((
m_rbEntireSchematic
!=
NULL
)
&&
m_rbEntireSchematic
->
IsKindOf
(
CLASSINFO
(
wxRadioButton
)
)),
wxT
(
"m_rbEntireSchematic pointer was NULL."
)
);
return
m_rbEntireSchematic
->
GetValue
();
}
bool
WinEDA_AnnotateFrame
::
GetResetItems
(
void
)
{
wxASSERT_MSG
(
(
m_cbResetAnnotation
!=
NULL
)
&&
m_cbResetAnnotation
->
IsKindOf
(
CLASSINFO
(
wxCheckBox
)
),
wxT
(
"m_cbResetAnnotation pointer was NULL."
)
);
return
m_rbResetAnnotation
->
GetValue
();
}
...
...
@@ -340,10 +332,6 @@ int WinEDA_AnnotateFrame::GetSortOrder( void )
* 2 if annotation by value
*/
{
wxASSERT_MSG
(
(
m_rbSortByPosition
!=
NULL
)
&&
m_rbSortByPosition
->
IsKindOf
(
CLASSINFO
(
wxRadioButton
)
),
wxT
(
"m_rbSortByPosition pointer was NULL."
)
);
if
(
m_rbSortBy_X_Position
->
GetValue
()
)
return
0
;
if
(
m_rbSortBy_Y_Position
->
GetValue
()
)
...
...
@@ -369,7 +357,6 @@ bool WinEDA_AnnotateFrame::ShowToolTips()
wxBitmap
WinEDA_AnnotateFrame
::
GetBitmapResource
(
const
wxString
&
name
)
{
// Bitmap retrieval
wxUnusedVar
(
name
);
if
(
name
==
wxT
(
"annotate_down_right_xpm"
))
{
wxBitmap
bitmap
(
annotate_down_right_xpm
);
...
...
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