CAM: Add missing initializers

This commit is contained in:
Chris Hennes
2025-07-23 16:51:20 +02:00
committed by Kacper Donat
parent d165324d31
commit fe624f2c3a
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -66,7 +66,7 @@ struct GuiItem
unsigned int flags {};
bool mouseOver {};
TextureItem texItem {};
QString toolTip;
QString toolTip {};
int posx()
{
@@ -32,7 +32,7 @@ namespace MillSim
MillSimulation::MillSimulation()
{
mCurMotion = {eNop, -1, 0, 0, 0, 0, 0, 0, 0};
mCurMotion = {eNop, -1, 0, 0, 0, 0, 0, 0, 0, '\0', 0.0};
guiDisplay.SetMillSimulator(this);
}