From 64f315c64913536d43409225c7281bf11617cfc9 Mon Sep 17 00:00:00 2001 From: Jon Evans Date: Sun, 27 Nov 2022 18:23:07 -0500 Subject: [PATCH] Move properties panel to widgets with the other AUI panels --- pcbnew/CMakeLists.txt | 2 +- pcbnew/pcb_base_edit_frame.cpp | 2 +- pcbnew/pcb_edit_frame.cpp | 2 +- pcbnew/toolbars_pcb_editor.cpp | 2 +- pcbnew/tools/properties_tool.cpp | 2 +- pcbnew/{dialogs => widgets}/pcb_properties_panel.cpp | 0 pcbnew/{dialogs => widgets}/pcb_properties_panel.h | 0 7 files changed, 5 insertions(+), 5 deletions(-) rename pcbnew/{dialogs => widgets}/pcb_properties_panel.cpp (100%) rename pcbnew/{dialogs => widgets}/pcb_properties_panel.h (100%) diff --git a/pcbnew/CMakeLists.txt b/pcbnew/CMakeLists.txt index 05e539c296..15b522359f 100644 --- a/pcbnew/CMakeLists.txt +++ b/pcbnew/CMakeLists.txt @@ -186,7 +186,6 @@ set( PCBNEW_DIALOGS dialogs/panel_setup_text_and_graphics_base.cpp dialogs/panel_setup_tracks_and_vias.cpp dialogs/panel_setup_tracks_and_vias_base.cpp - dialogs/pcb_properties_panel.cpp footprint_wizard.cpp footprint_wizard_frame.cpp footprint_wizard_frame_functions.cpp @@ -375,6 +374,7 @@ set( PCBNEW_CLASS_SRCS widgets/appearance_controls_base.cpp widgets/panel_selection_filter.cpp widgets/panel_selection_filter_base.cpp + widgets/pcb_properties_panel.cpp widgets/pcb_search_pane.cpp widgets/search_handlers.cpp diff --git a/pcbnew/pcb_base_edit_frame.cpp b/pcbnew/pcb_base_edit_frame.cpp index f627d4313c..7483e40672 100644 --- a/pcbnew/pcb_base_edit_frame.cpp +++ b/pcbnew/pcb_base_edit_frame.cpp @@ -38,8 +38,8 @@ #include #include #include +#include #include -#include #include #include diff --git a/pcbnew/pcb_edit_frame.cpp b/pcbnew/pcb_edit_frame.cpp index 82f94f055f..5c893740b3 100644 --- a/pcbnew/pcb_edit_frame.cpp +++ b/pcbnew/pcb_edit_frame.cpp @@ -38,7 +38,6 @@ #include #include #include -#include #include #include #include @@ -99,6 +98,7 @@ #include #include #include +#include #include #include #include diff --git a/pcbnew/toolbars_pcb_editor.cpp b/pcbnew/toolbars_pcb_editor.cpp index 33ddb7690f..6045c2efdd 100644 --- a/pcbnew/toolbars_pcb_editor.cpp +++ b/pcbnew/toolbars_pcb_editor.cpp @@ -47,7 +47,7 @@ #include #include #include -#include +#include #include #include #include diff --git a/pcbnew/tools/properties_tool.cpp b/pcbnew/tools/properties_tool.cpp index 853598baff..bad1677183 100644 --- a/pcbnew/tools/properties_tool.cpp +++ b/pcbnew/tools/properties_tool.cpp @@ -19,7 +19,7 @@ */ #include "properties_tool.h" -#include +#include #include diff --git a/pcbnew/dialogs/pcb_properties_panel.cpp b/pcbnew/widgets/pcb_properties_panel.cpp similarity index 100% rename from pcbnew/dialogs/pcb_properties_panel.cpp rename to pcbnew/widgets/pcb_properties_panel.cpp diff --git a/pcbnew/dialogs/pcb_properties_panel.h b/pcbnew/widgets/pcb_properties_panel.h similarity index 100% rename from pcbnew/dialogs/pcb_properties_panel.h rename to pcbnew/widgets/pcb_properties_panel.h