Browse Source

Fix missing includes on Linux after commit 0427bda7

6.0.7
jean-pierre charras 5 years ago
parent
commit
f6f2284851
  1. 1
      common/tool/action_toolbar.cpp
  2. 2
      common/widgets/lib_tree.cpp
  3. 1
      common/widgets/net_selector.cpp
  4. 1
      cvpcb/cvpcb_mainframe.cpp
  5. 1
      cvpcb/tools/cvpcb_control.cpp
  6. 1
      eeschema/fields_grid_table.cpp
  7. 1
      pcbnew/fp_tree_model_adapter.cpp
  8. 1
      pcbnew/fp_tree_synchronizing_adapter.cpp

1
common/tool/action_toolbar.cpp

@ -43,6 +43,7 @@
#include <wx/renderer.h>
#include <wx/sizer.h>
#include <wx/dcclient.h>
#include <wx/settings.h>
wxBitmap MakeDisabledBitmap( const wxBitmap& aSource )

2
common/widgets/lib_tree.cpp

@ -30,6 +30,8 @@
#include <wx/html/htmlwin.h>
#include <tool/tool_interactive.h>
#include <tool/tool_manager.h>
#include <wx/settings.h>
#include <wx/statbmp.h>
LIB_TREE::LIB_TREE( wxWindow* aParent, LIB_TABLE* aLibTable,

1
common/widgets/net_selector.cpp

@ -35,6 +35,7 @@
#include <wx/stattext.h>
#include <wx/sizer.h>
#include <wx/textctrl.h>
#include <wx/panel.h>
wxDEFINE_EVENT( NET_SELECTED, wxCommandEvent );

1
cvpcb/cvpcb_mainframe.cpp

@ -53,6 +53,7 @@
#include <tools/cvpcb_association_tool.h>
#include <tools/cvpcb_control.h>
#include <wx/button.h>
#include <wx/settings.h>
#define CVPCB_MAINFRAME_NAME wxT( "CvpcbFrame" )

1
cvpcb/tools/cvpcb_control.cpp

@ -33,6 +33,7 @@
#include <listboxes.h>
#include <tools/cvpcb_actions.h>
#include <tools/cvpcb_control.h>
#include <wx/settings.h>
using namespace std::placeholders;

1
eeschema/fields_grid_table.cpp

@ -35,6 +35,7 @@
#include <wildcards_and_files_ext.h>
#include <project/project_file.h>
#include "eda_doc.h"
#include <wx/settings.h>
enum

1
pcbnew/fp_tree_model_adapter.cpp

@ -24,6 +24,7 @@
#include <footprint_info.h>
#include <footprint_info_impl.h>
#include <generate_footprint_info.h>
#include <wx/settings.h>
#include "fp_tree_model_adapter.h"

1
pcbnew/fp_tree_synchronizing_adapter.cpp

@ -32,6 +32,7 @@
#include <footprint.h>
#include <tool/tool_manager.h>
#include <tools/footprint_editor_control.h>
#include <wx/settings.h>
wxObjectDataPtr<LIB_TREE_MODEL_ADAPTER>

Loading…
Cancel
Save