diff --git a/eeschema/viewlib_frame.h b/eeschema/viewlib_frame.h index 4e67d0eafc..e87952a64e 100644 --- a/eeschema/viewlib_frame.h +++ b/eeschema/viewlib_frame.h @@ -36,7 +36,6 @@ #include #include -class wxSashLayoutWindow; class wxListBox; class CMP_LIBRARY; diff --git a/include/common.h b/include/common.h index ef03ea0e6a..f7d222adc6 100644 --- a/include/common.h +++ b/include/common.h @@ -102,7 +102,7 @@ enum pseudokeys { #define GERBVIEW_EXE wxT( "gerbview.app/Contents/MacOS/gerbview" ) #define BITMAPCONVERTER_EXE wxT( "bitmap2component.app/Contents/MacOS/bitmap2component" ) #define PCB_CALCULATOR_EXE wxT( "pcb_calculator.app/Contents/MacOS/pcb_calculator" ) -#define PL_EDITOR_EXE wxT( "pcb_calculator.app/Contents/MacOS/pl_editor" ) +#define PL_EDITOR_EXE wxT( "pl_editor.app/Contents/MacOS/pl_editor" ) # endif #endif diff --git a/scripts/bom-in-python/round_value_robin.py b/scripts/bom-in-python/round_value_robin.py index 536f5a1239..028312fc2a 100644 --- a/scripts/bom-in-python/round_value_robin.py +++ b/scripts/bom-in-python/round_value_robin.py @@ -30,7 +30,7 @@ def checkvalue(self): if v.isdigit(): i = int(v) if (i > 1000000): - i = i / 100000 + i = i / 1000000 v = str(i) + "M" if (i > 1000): i = i / 1000