Remove a #define used in a debug session, and now useless in panel_prev_model.*
This commit is contained in:
parent
2632b1d1a0
commit
1e242f3710
|
@ -41,7 +41,7 @@
|
|||
#include <class_board.h>
|
||||
|
||||
|
||||
PANEL_PREV_3D_B::PANEL_PREV_3D_B( wxWindow* aParent, S3D_CACHE* aCacheManager,
|
||||
PANEL_PREV_3D::PANEL_PREV_3D( wxWindow* aParent, S3D_CACHE* aCacheManager,
|
||||
MODULE* aModuleCopy,
|
||||
std::vector<S3D_INFO> *aParentInfoList ):
|
||||
PANEL_PREV_3D_BASE( aParent, wxID_ANY )
|
||||
|
@ -69,14 +69,14 @@ PANEL_PREV_3D_B::PANEL_PREV_3D_B( wxWindow* aParent, S3D_CACHE* aCacheManager,
|
|||
m_SizerPanelView->Add( m_previewPane, 1, wxEXPAND );
|
||||
|
||||
m_previewPane->Connect( wxEVT_ENTER_WINDOW, wxMouseEventHandler(
|
||||
PANEL_PREV_3D_B::onEnterPreviewCanvas ), NULL, this );
|
||||
PANEL_PREV_3D::onEnterPreviewCanvas ), NULL, this );
|
||||
}
|
||||
|
||||
|
||||
PANEL_PREV_3D_B::~PANEL_PREV_3D_B()
|
||||
PANEL_PREV_3D::~PANEL_PREV_3D()
|
||||
{
|
||||
m_previewPane->Disconnect( wxEVT_ENTER_WINDOW,
|
||||
wxMouseEventHandler( PANEL_PREV_3D_B::onEnterPreviewCanvas ), NULL, this );
|
||||
wxMouseEventHandler( PANEL_PREV_3D::onEnterPreviewCanvas ), NULL, this );
|
||||
|
||||
delete m_settings3Dviewer;
|
||||
delete m_dummyBoard;
|
||||
|
@ -84,7 +84,7 @@ PANEL_PREV_3D_B::~PANEL_PREV_3D_B()
|
|||
}
|
||||
|
||||
|
||||
void PANEL_PREV_3D_B::initPanel()
|
||||
void PANEL_PREV_3D::initPanel()
|
||||
{
|
||||
m_resolver = NULL;
|
||||
currentModelFile.clear();
|
||||
|
|
|
@ -62,16 +62,14 @@ class BOARD;
|
|||
class CINFO3D_VISU;
|
||||
class MODULE;
|
||||
|
||||
#define PANEL_PREV_3D_B PANEL_PREV_3D
|
||||
|
||||
class PANEL_PREV_3D_B: public PANEL_PREV_3D_BASE
|
||||
class PANEL_PREV_3D: public PANEL_PREV_3D_BASE
|
||||
{
|
||||
public:
|
||||
PANEL_PREV_3D_B( wxWindow* aParent, S3D_CACHE* aCacheManager,
|
||||
PANEL_PREV_3D( wxWindow* aParent, S3D_CACHE* aCacheManager,
|
||||
MODULE* aModuleCopy,
|
||||
std::vector<S3D_INFO> *aParentInfoList = NULL );
|
||||
|
||||
~PANEL_PREV_3D_B();
|
||||
~PANEL_PREV_3D();
|
||||
|
||||
private:
|
||||
wxString currentModelFile; ///< Used to check if the model file was changed
|
||||
|
|
Loading…
Reference in New Issue