File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -215,7 +215,7 @@ void MainWindow::createActions()
215215
216216 actionTabulaRasa = std::make_unique<QAction>( " Delete all" );
217217 actionTabulaRasa->setToolTip ( QStringLiteral (" Make a clean sweep (blank state)" ) );
218- actionTabulaRasa->setIcon ( QPixmap (" :/icons/Tango/Edit-clear.svg" ) );
218+ // actionTabulaRasa->setIcon( QPixmap(":/icons/Tango/Edit-clear.svg" ) );
219219 actionTabulaRasa->setIcon ( style ()->standardIcon ( QStyle::SP_DialogResetButton ) );
220220
221221 actionDeleteSelection = std::make_unique<QAction>( " Delete selected items" );
@@ -1132,7 +1132,7 @@ void MainWindow::slotToggleShowUncertainty()
11321132void MainWindow::slotToggleShowColored ()
11331133{
11341134 qDebug () << Q_FUNC_INFO;
1135- QEntity::QConstrained::toogleShowColor ();
1135+ QEntity::QConstrained::toggleShowColor ();
11361136 QConstraint::QConstraintBase::toggleShowColor ();
11371137 m_scene->update ();
11381138}
Original file line number Diff line number Diff line change @@ -128,7 +128,7 @@ class QConstrained : public QSegment
128128 static bool show () { return s_show; } // !< Get status of visibility
129129 static void toggleShow () { s_show = !s_show; } // !< Toggle visibility
130130 static bool showColor () { return s_showColor; } // !< Get status colorization
131- static void toogleShowColor () { s_showColor = !s_showColor;} // !< Toggle colorization / no colorization
131+ static void toggleShowColor () { s_showColor = !s_showColor;} // !< Toggle colorization / no colorization
132132 static void setPenDefault ( const QPen & p) { s_defaultPen = p; } // !< Set default pen
133133 static QPen defaultPen () { return s_defaultPen; } // !< Get current default pen
134134
You can’t perform that action at this time.
0 commit comments