replace BOM dialog with a pointer to FAQ https://answers.launchpad.net/kicad/+faq/2265
This commit is contained in:
parent
ac1386a5a2
commit
0ef043f0f8
|
@ -16,8 +16,6 @@ set(EESCHEMA_DLGS
|
||||||
dialogs/dialog_annotate_base.cpp
|
dialogs/dialog_annotate_base.cpp
|
||||||
dialogs/dialog_lib_edit_text.cpp
|
dialogs/dialog_lib_edit_text.cpp
|
||||||
dialogs/dialog_lib_edit_text_base.cpp
|
dialogs/dialog_lib_edit_text_base.cpp
|
||||||
dialogs/dialog_build_BOM.cpp
|
|
||||||
dialogs/dialog_build_BOM_base.cpp
|
|
||||||
dialogs/dialog_edit_component_in_lib.cpp
|
dialogs/dialog_edit_component_in_lib.cpp
|
||||||
dialogs/dialog_edit_component_in_lib_base.cpp
|
dialogs/dialog_edit_component_in_lib_base.cpp
|
||||||
dialogs/dialog_edit_component_in_schematic_fbp.cpp
|
dialogs/dialog_edit_component_in_schematic_fbp.cpp
|
||||||
|
@ -60,7 +58,6 @@ set(EESCHEMA_SRCS
|
||||||
backanno.cpp
|
backanno.cpp
|
||||||
block.cpp
|
block.cpp
|
||||||
block_libedit.cpp
|
block_libedit.cpp
|
||||||
build_BOM.cpp
|
|
||||||
busentry.cpp
|
busentry.cpp
|
||||||
bus-wire-junction.cpp
|
bus-wire-junction.cpp
|
||||||
class_drc_erc_item.cpp
|
class_drc_erc_item.cpp
|
||||||
|
|
|
@ -644,10 +644,10 @@ void SCH_EDIT_FRAME::OnCreateNetlist( wxCommandEvent& event )
|
||||||
|
|
||||||
void SCH_EDIT_FRAME::OnCreateBillOfMaterials( wxCommandEvent& )
|
void SCH_EDIT_FRAME::OnCreateBillOfMaterials( wxCommandEvent& )
|
||||||
{
|
{
|
||||||
DIALOG_BUILD_BOM* dlg = new DIALOG_BUILD_BOM( this );
|
wxMessageDialog dlg( this,
|
||||||
|
wxT( "https://answers.launchpad.net/kicad/+faq/2265" ),
|
||||||
dlg->ShowModal();
|
_( "BOM Howto" ) );
|
||||||
dlg->Destroy();
|
dlg.ShowModal();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -852,7 +852,7 @@ void SCH_EDIT_FRAME::OnPrint( wxCommandEvent& event )
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void SCH_EDIT_FRAME::PrintPage( wxDC* aDC, LAYER_MSK aPrintMask, bool aPrintMirrorMode,
|
void SCH_EDIT_FRAME::PrintPage( wxDC* aDC, LAYER_MSK aPrintMask, bool aPrintMirrorMode,
|
||||||
void* aData )
|
void* aData )
|
||||||
{
|
{
|
||||||
GetScreen()->Draw( m_canvas, aDC, GR_DEFAULT_DRAWMODE );
|
GetScreen()->Draw( m_canvas, aDC, GR_DEFAULT_DRAWMODE );
|
||||||
|
|
Loading…
Reference in New Issue