Skip to content

Commit 627bb4e

Browse files
committed
typo
1 parent e58ced5 commit 627bb4e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/mainwindow.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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()
11321132
void 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
}

src/qsegment.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)