remove superfluous semicolons
This commit is contained in:
parent
a90907530f
commit
c1b1646e2e
|
@ -84,7 +84,7 @@ using Gui::Dialog::DlgSettingsImageImp;
|
|||
|
||||
//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
||||
|
||||
DEF_STD_CMD_AC(StdOrthographicCamera);
|
||||
DEF_STD_CMD_AC(StdOrthographicCamera)
|
||||
|
||||
StdOrthographicCamera::StdOrthographicCamera()
|
||||
: Command("Std_OrthographicCamera")
|
||||
|
@ -134,7 +134,7 @@ Action * StdOrthographicCamera::createAction(void)
|
|||
return pcAction;
|
||||
}
|
||||
|
||||
DEF_STD_CMD_AC(StdPerspectiveCamera);
|
||||
DEF_STD_CMD_AC(StdPerspectiveCamera)
|
||||
|
||||
StdPerspectiveCamera::StdPerspectiveCamera()
|
||||
: Command("Std_PerspectiveCamera")
|
||||
|
@ -477,7 +477,7 @@ void StdCmdFreezeViews::languageChange()
|
|||
// Std_ToggleClipPlane
|
||||
//===========================================================================
|
||||
|
||||
DEF_STD_CMD_AC(StdCmdToggleClipPlane);
|
||||
DEF_STD_CMD_AC(StdCmdToggleClipPlane)
|
||||
|
||||
StdCmdToggleClipPlane::StdCmdToggleClipPlane()
|
||||
: Command("Std_ToggleClipPlane")
|
||||
|
@ -728,7 +728,7 @@ bool StdCmdDrawStyle::isActive(void)
|
|||
//===========================================================================
|
||||
// Std_ToggleVisibility
|
||||
//===========================================================================
|
||||
DEF_STD_CMD_A(StdCmdToggleVisibility);
|
||||
DEF_STD_CMD_A(StdCmdToggleVisibility)
|
||||
|
||||
StdCmdToggleVisibility::StdCmdToggleVisibility()
|
||||
: Command("Std_ToggleVisibility")
|
||||
|
@ -795,7 +795,7 @@ bool StdCmdToggleVisibility::isActive(void)
|
|||
//===========================================================================
|
||||
// Std_ToggleSelectability
|
||||
//===========================================================================
|
||||
DEF_STD_CMD_A(StdCmdToggleSelectability);
|
||||
DEF_STD_CMD_A(StdCmdToggleSelectability)
|
||||
|
||||
StdCmdToggleSelectability::StdCmdToggleSelectability()
|
||||
: Command("Std_ToggleSelectability")
|
||||
|
@ -842,7 +842,7 @@ bool StdCmdToggleSelectability::isActive(void)
|
|||
//===========================================================================
|
||||
// Std_ShowSelection
|
||||
//===========================================================================
|
||||
DEF_STD_CMD_A(StdCmdShowSelection);
|
||||
DEF_STD_CMD_A(StdCmdShowSelection)
|
||||
|
||||
StdCmdShowSelection::StdCmdShowSelection()
|
||||
: Command("Std_ShowSelection")
|
||||
|
@ -878,7 +878,7 @@ bool StdCmdShowSelection::isActive(void)
|
|||
//===========================================================================
|
||||
// Std_HideSelection
|
||||
//===========================================================================
|
||||
DEF_STD_CMD_A(StdCmdHideSelection);
|
||||
DEF_STD_CMD_A(StdCmdHideSelection)
|
||||
|
||||
StdCmdHideSelection::StdCmdHideSelection()
|
||||
: Command("Std_HideSelection")
|
||||
|
@ -914,7 +914,7 @@ bool StdCmdHideSelection::isActive(void)
|
|||
//===========================================================================
|
||||
// Std_ToggleObjects
|
||||
//===========================================================================
|
||||
DEF_STD_CMD_A(StdCmdToggleObjects);
|
||||
DEF_STD_CMD_A(StdCmdToggleObjects)
|
||||
|
||||
StdCmdToggleObjects::StdCmdToggleObjects()
|
||||
: Command("Std_ToggleObjects")
|
||||
|
@ -954,7 +954,7 @@ bool StdCmdToggleObjects::isActive(void)
|
|||
//===========================================================================
|
||||
// Std_ShowObjects
|
||||
//===========================================================================
|
||||
DEF_STD_CMD_A(StdCmdShowObjects);
|
||||
DEF_STD_CMD_A(StdCmdShowObjects)
|
||||
|
||||
StdCmdShowObjects::StdCmdShowObjects()
|
||||
: Command("Std_ShowObjects")
|
||||
|
@ -990,7 +990,7 @@ bool StdCmdShowObjects::isActive(void)
|
|||
//===========================================================================
|
||||
// Std_HideObjects
|
||||
//===========================================================================
|
||||
DEF_STD_CMD_A(StdCmdHideObjects);
|
||||
DEF_STD_CMD_A(StdCmdHideObjects)
|
||||
|
||||
StdCmdHideObjects::StdCmdHideObjects()
|
||||
: Command("Std_HideObjects")
|
||||
|
@ -1026,7 +1026,7 @@ bool StdCmdHideObjects::isActive(void)
|
|||
//===========================================================================
|
||||
// Std_SetAppearance
|
||||
//===========================================================================
|
||||
DEF_STD_CMD_A(StdCmdSetAppearance);
|
||||
DEF_STD_CMD_A(StdCmdSetAppearance)
|
||||
|
||||
StdCmdSetAppearance::StdCmdSetAppearance()
|
||||
: Command("Std_SetAppearance")
|
||||
|
@ -1084,7 +1084,7 @@ void StdCmdViewBottom::activated(int iMsg)
|
|||
//===========================================================================
|
||||
// Std_ViewFront
|
||||
//===========================================================================
|
||||
DEF_3DV_CMD(StdCmdViewFront);
|
||||
DEF_3DV_CMD(StdCmdViewFront)
|
||||
|
||||
StdCmdViewFront::StdCmdViewFront()
|
||||
: Command("Std_ViewFront")
|
||||
|
@ -1108,7 +1108,7 @@ void StdCmdViewFront::activated(int iMsg)
|
|||
//===========================================================================
|
||||
// Std_ViewLeft
|
||||
//===========================================================================
|
||||
DEF_3DV_CMD(StdCmdViewLeft);
|
||||
DEF_3DV_CMD(StdCmdViewLeft)
|
||||
|
||||
StdCmdViewLeft::StdCmdViewLeft()
|
||||
: Command("Std_ViewLeft")
|
||||
|
@ -1132,7 +1132,7 @@ void StdCmdViewLeft::activated(int iMsg)
|
|||
//===========================================================================
|
||||
// Std_ViewRear
|
||||
//===========================================================================
|
||||
DEF_3DV_CMD(StdCmdViewRear);
|
||||
DEF_3DV_CMD(StdCmdViewRear)
|
||||
|
||||
StdCmdViewRear::StdCmdViewRear()
|
||||
: Command("Std_ViewRear")
|
||||
|
@ -1156,7 +1156,7 @@ void StdCmdViewRear::activated(int iMsg)
|
|||
//===========================================================================
|
||||
// Std_ViewRight
|
||||
//===========================================================================
|
||||
DEF_3DV_CMD(StdCmdViewRight);
|
||||
DEF_3DV_CMD(StdCmdViewRight)
|
||||
|
||||
StdCmdViewRight::StdCmdViewRight()
|
||||
: Command("Std_ViewRight")
|
||||
|
@ -1180,7 +1180,7 @@ void StdCmdViewRight::activated(int iMsg)
|
|||
//===========================================================================
|
||||
// Std_ViewTop
|
||||
//===========================================================================
|
||||
DEF_3DV_CMD(StdCmdViewTop);
|
||||
DEF_3DV_CMD(StdCmdViewTop)
|
||||
|
||||
StdCmdViewTop::StdCmdViewTop()
|
||||
: Command("Std_ViewTop")
|
||||
|
@ -1204,7 +1204,7 @@ void StdCmdViewTop::activated(int iMsg)
|
|||
//===========================================================================
|
||||
// Std_ViewAxo
|
||||
//===========================================================================
|
||||
DEF_3DV_CMD(StdCmdViewAxo);
|
||||
DEF_3DV_CMD(StdCmdViewAxo)
|
||||
|
||||
StdCmdViewAxo::StdCmdViewAxo()
|
||||
: Command("Std_ViewAxo")
|
||||
|
@ -1228,7 +1228,7 @@ void StdCmdViewAxo::activated(int iMsg)
|
|||
//===========================================================================
|
||||
// Std_ViewRotateLeft
|
||||
//===========================================================================
|
||||
DEF_3DV_CMD(StdCmdViewRotateLeft);
|
||||
DEF_3DV_CMD(StdCmdViewRotateLeft)
|
||||
|
||||
StdCmdViewRotateLeft::StdCmdViewRotateLeft()
|
||||
: Command("Std_ViewRotateLeft")
|
||||
|
@ -1253,7 +1253,7 @@ void StdCmdViewRotateLeft::activated(int iMsg)
|
|||
//===========================================================================
|
||||
// Std_ViewRotateRight
|
||||
//===========================================================================
|
||||
DEF_3DV_CMD(StdCmdViewRotateRight);
|
||||
DEF_3DV_CMD(StdCmdViewRotateRight)
|
||||
|
||||
StdCmdViewRotateRight::StdCmdViewRotateRight()
|
||||
: Command("Std_ViewRotateRight")
|
||||
|
@ -1278,7 +1278,7 @@ void StdCmdViewRotateRight::activated(int iMsg)
|
|||
//===========================================================================
|
||||
// Std_ViewFitAll
|
||||
//===========================================================================
|
||||
DEF_STD_CMD_A(StdCmdViewFitAll);
|
||||
DEF_STD_CMD_A(StdCmdViewFitAll)
|
||||
|
||||
StdCmdViewFitAll::StdCmdViewFitAll()
|
||||
: Command("Std_ViewFitAll")
|
||||
|
@ -1308,7 +1308,7 @@ bool StdCmdViewFitAll::isActive(void)
|
|||
//===========================================================================
|
||||
// Std_ViewFitSelection
|
||||
//===========================================================================
|
||||
DEF_STD_CMD_A(StdCmdViewFitSelection);
|
||||
DEF_STD_CMD_A(StdCmdViewFitSelection)
|
||||
|
||||
StdCmdViewFitSelection::StdCmdViewFitSelection()
|
||||
: Command("Std_ViewFitSelection")
|
||||
|
@ -1340,7 +1340,7 @@ bool StdCmdViewFitSelection::isActive(void)
|
|||
//===========================================================================
|
||||
// Std_ViewDock
|
||||
//===========================================================================
|
||||
DEF_STD_CMD_A(StdViewDock);
|
||||
DEF_STD_CMD_A(StdViewDock)
|
||||
|
||||
StdViewDock::StdViewDock()
|
||||
: Command("Std_ViewDock")
|
||||
|
@ -1368,7 +1368,7 @@ bool StdViewDock::isActive(void)
|
|||
//===========================================================================
|
||||
// Std_ViewUndock
|
||||
//===========================================================================
|
||||
DEF_STD_CMD_A(StdViewUndock);
|
||||
DEF_STD_CMD_A(StdViewUndock)
|
||||
|
||||
StdViewUndock::StdViewUndock()
|
||||
: Command("Std_ViewUndock")
|
||||
|
@ -1396,7 +1396,7 @@ bool StdViewUndock::isActive(void)
|
|||
//===========================================================================
|
||||
// Std_ViewFullscreen
|
||||
//===========================================================================
|
||||
DEF_STD_CMD_A(StdViewFullscreen);
|
||||
DEF_STD_CMD_A(StdViewFullscreen)
|
||||
|
||||
StdViewFullscreen::StdViewFullscreen()
|
||||
: Command("Std_ViewFullscreen")
|
||||
|
@ -1425,7 +1425,7 @@ bool StdViewFullscreen::isActive(void)
|
|||
//===========================================================================
|
||||
// Std_ViewDockUndockFullscreen
|
||||
//===========================================================================
|
||||
DEF_STD_CMD_AC(StdViewDockUndockFullscreen);
|
||||
DEF_STD_CMD_AC(StdViewDockUndockFullscreen)
|
||||
|
||||
StdViewDockUndockFullscreen::StdViewDockUndockFullscreen()
|
||||
: Command("Std_ViewDockUndockFullscreen")
|
||||
|
@ -1505,7 +1505,7 @@ bool StdViewDockUndockFullscreen::isActive(void)
|
|||
//===========================================================================
|
||||
// Std_ViewVR
|
||||
//===========================================================================
|
||||
DEF_STD_CMD_A(StdCmdViewVR);
|
||||
DEF_STD_CMD_A(StdCmdViewVR)
|
||||
|
||||
StdCmdViewVR::StdCmdViewVR()
|
||||
: Command("Std_ViewVR")
|
||||
|
@ -1535,7 +1535,7 @@ bool StdCmdViewVR::isActive(void)
|
|||
//===========================================================================
|
||||
// Std_ViewScreenShot
|
||||
//===========================================================================
|
||||
DEF_STD_CMD_A(StdViewScreenShot);
|
||||
DEF_STD_CMD_A(StdViewScreenShot)
|
||||
|
||||
StdViewScreenShot::StdViewScreenShot()
|
||||
: Command("Std_ViewScreenShot")
|
||||
|
@ -1654,7 +1654,7 @@ bool StdViewScreenShot::isActive(void)
|
|||
//===========================================================================
|
||||
// Std_ViewCreate
|
||||
//===========================================================================
|
||||
DEF_STD_CMD_A(StdCmdViewCreate);
|
||||
DEF_STD_CMD_A(StdCmdViewCreate)
|
||||
|
||||
StdCmdViewCreate::StdCmdViewCreate()
|
||||
: Command("Std_ViewCreate")
|
||||
|
@ -1683,7 +1683,7 @@ bool StdCmdViewCreate::isActive(void)
|
|||
//===========================================================================
|
||||
// Std_ToggleNavigation
|
||||
//===========================================================================
|
||||
DEF_STD_CMD_A(StdCmdToggleNavigation);
|
||||
DEF_STD_CMD_A(StdCmdToggleNavigation)
|
||||
|
||||
StdCmdToggleNavigation::StdCmdToggleNavigation()
|
||||
: Command("Std_ToggleNavigation")
|
||||
|
@ -1813,7 +1813,7 @@ protected:
|
|||
//===========================================================================
|
||||
// Std_ViewExample1
|
||||
//===========================================================================
|
||||
DEF_STD_CMD_A(StdCmdAxisCross);
|
||||
DEF_STD_CMD_A(StdCmdAxisCross)
|
||||
|
||||
StdCmdAxisCross::StdCmdAxisCross()
|
||||
: Command("Std_AxisCross")
|
||||
|
@ -1858,7 +1858,7 @@ bool StdCmdAxisCross::isActive(void)
|
|||
//===========================================================================
|
||||
// Std_ViewExample1
|
||||
//===========================================================================
|
||||
DEF_STD_CMD_A(StdCmdViewExample1);
|
||||
DEF_STD_CMD_A(StdCmdViewExample1)
|
||||
|
||||
StdCmdViewExample1::StdCmdViewExample1()
|
||||
: Command("Std_ViewExample1")
|
||||
|
@ -1886,7 +1886,7 @@ bool StdCmdViewExample1::isActive(void)
|
|||
//===========================================================================
|
||||
// Std_ViewExample2
|
||||
//===========================================================================
|
||||
DEF_STD_CMD_A(StdCmdViewExample2);
|
||||
DEF_STD_CMD_A(StdCmdViewExample2)
|
||||
|
||||
StdCmdViewExample2::StdCmdViewExample2()
|
||||
: Command("Std_ViewExample2")
|
||||
|
@ -1914,7 +1914,7 @@ bool StdCmdViewExample2::isActive(void)
|
|||
//===========================================================================
|
||||
// Std_ViewExample3
|
||||
//===========================================================================
|
||||
DEF_STD_CMD_A(StdCmdViewExample3);
|
||||
DEF_STD_CMD_A(StdCmdViewExample3)
|
||||
|
||||
StdCmdViewExample3::StdCmdViewExample3()
|
||||
: Command("Std_ViewExample3")
|
||||
|
@ -1943,7 +1943,7 @@ bool StdCmdViewExample3::isActive(void)
|
|||
//===========================================================================
|
||||
// Std_ViewIvStereoOff
|
||||
//===========================================================================
|
||||
DEF_STD_CMD_A(StdCmdViewIvStereoOff);
|
||||
DEF_STD_CMD_A(StdCmdViewIvStereoOff)
|
||||
|
||||
StdCmdViewIvStereoOff::StdCmdViewIvStereoOff()
|
||||
: Command("Std_ViewIvStereoOff")
|
||||
|
@ -1972,7 +1972,7 @@ bool StdCmdViewIvStereoOff::isActive(void)
|
|||
//===========================================================================
|
||||
// Std_ViewIvStereoRedGreen
|
||||
//===========================================================================
|
||||
DEF_STD_CMD_A(StdCmdViewIvStereoRedGreen);
|
||||
DEF_STD_CMD_A(StdCmdViewIvStereoRedGreen)
|
||||
|
||||
StdCmdViewIvStereoRedGreen::StdCmdViewIvStereoRedGreen()
|
||||
: Command("Std_ViewIvStereoRedGreen")
|
||||
|
@ -2000,7 +2000,7 @@ bool StdCmdViewIvStereoRedGreen::isActive(void)
|
|||
//===========================================================================
|
||||
// Std_ViewIvStereoQuadBuff
|
||||
//===========================================================================
|
||||
DEF_STD_CMD_A(StdCmdViewIvStereoQuadBuff);
|
||||
DEF_STD_CMD_A(StdCmdViewIvStereoQuadBuff)
|
||||
|
||||
StdCmdViewIvStereoQuadBuff::StdCmdViewIvStereoQuadBuff()
|
||||
: Command("Std_ViewIvStereoQuadBuff")
|
||||
|
@ -2028,7 +2028,7 @@ bool StdCmdViewIvStereoQuadBuff::isActive(void)
|
|||
//===========================================================================
|
||||
// Std_ViewIvStereoInterleavedRows
|
||||
//===========================================================================
|
||||
DEF_STD_CMD_A(StdCmdViewIvStereoInterleavedRows);
|
||||
DEF_STD_CMD_A(StdCmdViewIvStereoInterleavedRows)
|
||||
|
||||
StdCmdViewIvStereoInterleavedRows::StdCmdViewIvStereoInterleavedRows()
|
||||
: Command("Std_ViewIvStereoInterleavedRows")
|
||||
|
@ -2056,7 +2056,7 @@ bool StdCmdViewIvStereoInterleavedRows::isActive(void)
|
|||
//===========================================================================
|
||||
// Std_ViewIvStereoInterleavedColumns
|
||||
//===========================================================================
|
||||
DEF_STD_CMD_A(StdCmdViewIvStereoInterleavedColumns);
|
||||
DEF_STD_CMD_A(StdCmdViewIvStereoInterleavedColumns)
|
||||
|
||||
StdCmdViewIvStereoInterleavedColumns::StdCmdViewIvStereoInterleavedColumns()
|
||||
: Command("Std_ViewIvStereoInterleavedColumns")
|
||||
|
@ -2085,7 +2085,7 @@ bool StdCmdViewIvStereoInterleavedColumns::isActive(void)
|
|||
//===========================================================================
|
||||
// Std_ViewIvIssueCamPos
|
||||
//===========================================================================
|
||||
DEF_STD_CMD_A(StdCmdViewIvIssueCamPos);
|
||||
DEF_STD_CMD_A(StdCmdViewIvIssueCamPos)
|
||||
|
||||
StdCmdViewIvIssueCamPos::StdCmdViewIvIssueCamPos()
|
||||
: Command("Std_ViewIvIssueCamPos")
|
||||
|
@ -2135,7 +2135,7 @@ bool StdCmdViewIvIssueCamPos::isActive(void)
|
|||
//===========================================================================
|
||||
// Std_ViewZoomIn
|
||||
//===========================================================================
|
||||
DEF_STD_CMD_A(StdViewZoomIn);
|
||||
DEF_STD_CMD_A(StdViewZoomIn)
|
||||
|
||||
StdViewZoomIn::StdViewZoomIn()
|
||||
: Command("Std_ViewZoomIn")
|
||||
|
@ -2170,7 +2170,7 @@ bool StdViewZoomIn::isActive(void)
|
|||
//===========================================================================
|
||||
// Std_ViewZoomOut
|
||||
//===========================================================================
|
||||
DEF_STD_CMD_A(StdViewZoomOut);
|
||||
DEF_STD_CMD_A(StdViewZoomOut)
|
||||
|
||||
StdViewZoomOut::StdViewZoomOut()
|
||||
: Command("Std_ViewZoomOut")
|
||||
|
@ -2205,7 +2205,7 @@ bool StdViewZoomOut::isActive(void)
|
|||
//===========================================================================
|
||||
// Std_ViewBoxZoom
|
||||
//===========================================================================
|
||||
DEF_3DV_CMD(StdViewBoxZoom);
|
||||
DEF_3DV_CMD(StdViewBoxZoom)
|
||||
|
||||
StdViewBoxZoom::StdViewBoxZoom()
|
||||
: Command("Std_ViewBoxZoom")
|
||||
|
@ -2236,7 +2236,7 @@ void StdViewBoxZoom::activated(int iMsg)
|
|||
//===========================================================================
|
||||
// Std_BoxSelection
|
||||
//===========================================================================
|
||||
DEF_3DV_CMD(StdBoxSelection);
|
||||
DEF_3DV_CMD(StdBoxSelection)
|
||||
|
||||
StdBoxSelection::StdBoxSelection()
|
||||
: Command("Std_BoxSelection")
|
||||
|
@ -2329,7 +2329,7 @@ void StdBoxSelection::activated(int iMsg)
|
|||
// Std_TreeSelection
|
||||
//===========================================================================
|
||||
|
||||
DEF_STD_CMD(StdCmdTreeSelection);
|
||||
DEF_STD_CMD(StdCmdTreeSelection)
|
||||
|
||||
StdCmdTreeSelection::StdCmdTreeSelection()
|
||||
: Command("Std_TreeSelection")
|
||||
|
@ -2356,7 +2356,7 @@ void StdCmdTreeSelection::activated(int iMsg)
|
|||
// Std_MeasureDistance
|
||||
//===========================================================================
|
||||
|
||||
DEF_STD_CMD_A(StdCmdMeasureDistance);
|
||||
DEF_STD_CMD_A(StdCmdMeasureDistance)
|
||||
|
||||
StdCmdMeasureDistance::StdCmdMeasureDistance()
|
||||
: Command("Std_MeasureDistance")
|
||||
|
@ -2446,7 +2446,7 @@ bool StdCmdMeasureDistance::isActive(void)
|
|||
// Std_SceneInspector
|
||||
//===========================================================================
|
||||
|
||||
DEF_3DV_CMD(StdCmdSceneInspector);
|
||||
DEF_3DV_CMD(StdCmdSceneInspector)
|
||||
|
||||
StdCmdSceneInspector::StdCmdSceneInspector()
|
||||
: Command("Std_SceneInspector")
|
||||
|
@ -2479,7 +2479,7 @@ void StdCmdSceneInspector::activated(int iMsg)
|
|||
// Std_TextureMapping
|
||||
//===========================================================================
|
||||
|
||||
DEF_STD_CMD_A(StdCmdTextureMapping);
|
||||
DEF_STD_CMD_A(StdCmdTextureMapping)
|
||||
|
||||
StdCmdTextureMapping::StdCmdTextureMapping()
|
||||
: Command("Std_TextureMapping")
|
||||
|
@ -2506,7 +2506,7 @@ bool StdCmdTextureMapping::isActive(void)
|
|||
&& (Gui::Control().activeDialog()==0);
|
||||
}
|
||||
|
||||
DEF_STD_CMD(StdCmdDemoMode);
|
||||
DEF_STD_CMD(StdCmdDemoMode)
|
||||
|
||||
StdCmdDemoMode::StdCmdDemoMode()
|
||||
: Command("Std_DemoMode")
|
||||
|
@ -2533,7 +2533,7 @@ void StdCmdDemoMode::activated(int iMsg)
|
|||
// Part_Measure_Clear_All
|
||||
//===========================================================================
|
||||
|
||||
DEF_STD_CMD(CmdViewMeasureClearAll);
|
||||
DEF_STD_CMD(CmdViewMeasureClearAll)
|
||||
|
||||
CmdViewMeasureClearAll::CmdViewMeasureClearAll()
|
||||
: Command("View_Measure_Clear_All")
|
||||
|
@ -2563,7 +2563,7 @@ void CmdViewMeasureClearAll::activated(int iMsg)
|
|||
// Part_Measure_Toggle_All
|
||||
//===========================================================================
|
||||
|
||||
DEF_STD_CMD(CmdViewMeasureToggleAll);
|
||||
DEF_STD_CMD(CmdViewMeasureToggleAll)
|
||||
|
||||
CmdViewMeasureToggleAll::CmdViewMeasureToggleAll()
|
||||
: Command("View_Measure_Toggle_All")
|
||||
|
|
Loading…
Reference in New Issue
Block a user