Part: rename to uppercase, Part_ProjectionOnSurface

For consistency with all other commands that start with capital letter.
This commit is contained in:
vocx-fc
2020-08-17 00:10:16 -05:00
committed by wwmayer
parent 85b3b3bbe6
commit 669c304789
2 changed files with 5 additions and 5 deletions

View File

@@ -2424,18 +2424,18 @@ bool CmdBoxSelection::isActive(void)
}
//===========================================================================
// Part_projectionOnSurface
// Part_ProjectionOnSurface
//===========================================================================
DEF_STD_CMD_A(CmdPartProjectionOnSurface)
CmdPartProjectionOnSurface::CmdPartProjectionOnSurface()
:Command("Part_projectionOnSurface")
:Command("Part_ProjectionOnSurface")
{
sAppModule = "Part";
sGroup = QT_TR_NOOP("Part");
sMenuText = QT_TR_NOOP("Create projection on surface...");
sToolTipText = QT_TR_NOOP("Create projection on surface...");
sWhatsThis = "Part_projectionOnSurface";
sWhatsThis = "Part_ProjectionOnSurface";
sStatusTip = sToolTipText;
sPixmap = "Part_ProjectionOnSurface";
}

View File

@@ -141,7 +141,7 @@ Gui::MenuItem* Workbench::setupMenuBar() const
<< "Part_Offset"
<< "Part_Offset2D"
<< "Part_Thickness"
<< "Part_projectionOnSurface"
<< "Part_ProjectionOnSurface"
<< "Separator"
<< "Part_EditAttachment";
@@ -198,7 +198,7 @@ Gui::ToolBarItem* Workbench::setupToolBars() const
<< "Part_Sweep"
<< "Part_CompOffset"
<< "Part_Thickness"
<< "Part_projectionOnSurface";
<< "Part_ProjectionOnSurface";
Gui::ToolBarItem* boolop = new Gui::ToolBarItem(root);
boolop->setCommand("Boolean");