From 4d2106c3c6f51c574fbfad69d6086cbe74af1179 Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Wed, 28 Feb 2018 20:31:59 +0100 Subject: logic, filter/kalman: fix typos Tool: codespell --- logic/pipeline.hpp | 2 +- logic/runtime-libraries.cpp | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'logic') diff --git a/logic/pipeline.hpp b/logic/pipeline.hpp index 5c3c3a26..45d5b2b2 100644 --- a/logic/pipeline.hpp +++ b/logic/pipeline.hpp @@ -92,7 +92,7 @@ private: Pose newpose; runtime_libraries const& libs; // The owner of the reference is the main window. - // This design might be usefull if we decide later on to swap out + // This design might be useful if we decide later on to swap out // the logger while the tracker is running. TrackLogger& logger; diff --git a/logic/runtime-libraries.cpp b/logic/runtime-libraries.cpp index 1dcff4a5..d05e90c2 100644 --- a/logic/runtime-libraries.cpp +++ b/logic/runtime-libraries.cpp @@ -19,7 +19,7 @@ runtime_libraries::runtime_libraries(QFrame* frame, dylibptr t, dylibptr p, dyli if(status = pProtocol->initialize(), !status.is_ok()) { - status = _("Error occured while loading protocol %1\n\n%2\n") + status = _("Error occurred while loading protocol %1\n\n%2\n") .arg(p->name).arg(status.error); goto end; } @@ -36,14 +36,14 @@ runtime_libraries::runtime_libraries(QFrame* frame, dylibptr t, dylibptr p, dyli if (pFilter) if(status = pFilter->initialize(), !status.is_ok()) { - status = _("Error occured while loading filter %1\n\n%2\n") + status = _("Error occurred while loading filter %1\n\n%2\n") .arg(f->name).arg(status.error); goto end; } if (status = pTracker->start_tracker(frame), !status.is_ok()) { - status = _("Error occured while loading tracker %1\n\n%2\n") + status = _("Error occurred while loading tracker %1\n\n%2\n") .arg(t->name).arg(status.error); goto end; } -- cgit v1.2.3