Commit 014d852b authored by stambaughw's avatar stambaughw
Browse files

Dialog work and other minor changes.

* Replace EESchema sheet properties dialog with wxFormBuilder version.
* Editing an existing sheet now marks schematic as modified.
* Code style updates for some of my previous work.
* Improvements to the CMP_LIB_ENTRY object.
* Replaced symbol edit export fprintf code with wxFFile implementation.
* GCC compiler warning fix in pcbnew/drc.cpp.
parent 867737e2
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -65,6 +65,8 @@ set(EESCHEMA_SRCS
    dialog_lib_new_component_base.cpp
    dialog_print_using_printer_base.cpp
    dialog_print_using_printer.cpp
    dialog_sch_sheet_props.cpp
    dialog_sch_sheet_props_base.cpp
    dialog_SVG_print.cpp
    dialog_SVG_print_base.cpp
    edit_component_in_lib.cpp
+1 −1
Original line number Diff line number Diff line
@@ -75,7 +75,7 @@ void ReAnnotatePowerSymbolsOnly( void )
            LIB_COMPONENT* Entry =
                CMP_LIBRARY::FindLibraryComponent( DrawLibItem->m_ChipName );

            if( (Entry == NULL) || (Entry->m_Options != ENTRY_POWER) )
            if( ( Entry == NULL ) || !Entry->isPower() )
                continue;

            //DrawLibItem->ClearAnnotation(sheet); this clears all annotation :(
Loading