summaryrefslogtreecommitdiff
path: root/sdext/source/presenter/PresenterTextView.cxx
diff options
context:
space:
mode:
authorDavid Tardon <dtardon@redhat.com>2017-02-23 12:37:29 +0100
committerDavid Tardon <dtardon@redhat.com>2017-02-23 14:50:13 +0100
commita3f2bf61d93c3f599ed24039632055c4dbdf80e5 (patch)
tree28fbd07a3c676b11aff5c92a6c748d960535ef5c /sdext/source/presenter/PresenterTextView.cxx
parentbaf043318e83e768abe4ed7ae1c45bb75c0197e3 (diff)
change intervall -> interval
Change-Id: Ib211619428f16304603d9c0a9fce0b22dde2a617
Diffstat (limited to 'sdext/source/presenter/PresenterTextView.cxx')
-rw-r--r--sdext/source/presenter/PresenterTextView.cxx6
1 files changed, 3 insertions, 3 deletions
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;
}