From a3f2bf61d93c3f599ed24039632055c4dbdf80e5 Mon Sep 17 00:00:00 2001 From: David Tardon Date: Thu, 23 Feb 2017 12:37:29 +0100 Subject: change intervall -> interval Change-Id: Ib211619428f16304603d9c0a9fce0b22dde2a617 --- sdext/source/presenter/PresenterTextView.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sdext/source/presenter/PresenterTextView.cxx') diff --git a/sdext/source/presenter/PresenterTextView.cxx b/sdext/source/presenter/PresenterTextView.cxx index 8e3800b46479..f876ea729194 100644 --- a/sdext/source/presenter/PresenterTextView.cxx +++ b/sdext/source/presenter/PresenterTextView.cxx @@ -41,7 +41,7 @@ using namespace ::com::sun::star; using namespace ::com::sun::star::accessibility; using namespace ::com::sun::star::uno; -const static sal_Int64 CaretBlinkIntervall = 500 * 1000 * 1000; +const static sal_Int64 CaretBlinkInterval = 500 * 1000 * 1000; //#define SHOW_CHARACTER_BOXES @@ -1101,8 +1101,8 @@ void PresenterTextCaret::ShowCaret() { mnCaretBlinkTaskId = PresenterTimer::ScheduleRepeatedTask ( [this] (TimeValue const&) { return this->InvertCaret(); }, - CaretBlinkIntervall, - CaretBlinkIntervall); + CaretBlinkInterval, + CaretBlinkInterval); } mbIsCaretVisible = true; } -- cgit