From c9dc326a0967e982a29e1284300cecb7b4e3abd9 Mon Sep 17 00:00:00 2001 From: Ian McInerney Date: Sun, 4 Oct 2020 17:16:42 +0100 Subject: [PATCH] gerbview: Cleanup tool header --- gerbview/tools/gerbview_control.h | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/gerbview/tools/gerbview_control.h b/gerbview/tools/gerbview_control.h index 85a7250162..3d5476e1d8 100644 --- a/gerbview/tools/gerbview_control.h +++ b/gerbview/tools/gerbview_control.h @@ -23,6 +23,7 @@ #include +class GERBVIEW_FRAME; /** * PCBNEW_CONTROL @@ -40,18 +41,11 @@ public: void Reset( RESET_REASON aReason ) override; // Display modes - int HighContrastMode( const TOOL_EVENT& aEvent ); - int HighContrastInc( const TOOL_EVENT& aEvent ); - int HighContrastDec( const TOOL_EVENT& aEvent ); int DisplayControl( const TOOL_EVENT& aEvent ); // Layer control - int LayerSwitch( const TOOL_EVENT& aEvent ); int LayerNext( const TOOL_EVENT& aEvent ); int LayerPrev( const TOOL_EVENT& aEvent ); - int LayerToggle( const TOOL_EVENT& aEvent ); - int LayerAlphaInc( const TOOL_EVENT& aEvent ); - int LayerAlphaDec( const TOOL_EVENT& aEvent ); // Files int OpenGerber( const TOOL_EVENT& aEvent ); @@ -63,7 +57,6 @@ public: int HighlightControl( const TOOL_EVENT& aEvent ); // Miscellaneous - int SwitchUnits( const TOOL_EVENT& aEvent ); int UpdateMessagePanel( const TOOL_EVENT& aEvent ); int Print( const TOOL_EVENT& aEvent ); @@ -72,7 +65,6 @@ public: private: GERBVIEW_FRAME* m_frame; - }; #endif