From 25079a83c2c4efd877a735e6571f149f703d4a16 Mon Sep 17 00:00:00 2001 From: Michael Schmitt Date: Thu, 18 Jan 2007 21:47:27 +0000 Subject: [PATCH] * LyXView.C: * qt4/GuiWorkArea.h: * qt4/GuiWorkArea.C: * WorkArea.h: fix typos: "shedule" => "schedule" git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@16755 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/frontends/LyXView.C | 2 +- src/frontends/WorkArea.h | 2 +- src/frontends/qt4/GuiWorkArea.C | 6 +++--- src/frontends/qt4/GuiWorkArea.h | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/frontends/LyXView.C b/src/frontends/LyXView.C index e6ad20d284..8c6059bf75 100644 --- a/src/frontends/LyXView.C +++ b/src/frontends/LyXView.C @@ -432,7 +432,7 @@ Buffer const * const LyXView::updateInset(InsetBase const * inset) const Buffer const * buffer_ptr = 0; if (inset) { BOOST_ASSERT(work_area_); - work_area_->sheduleRedraw(); + work_area_->scheduleRedraw(); buffer_ptr = work_area_->bufferView().buffer(); } diff --git a/src/frontends/WorkArea.h b/src/frontends/WorkArea.h index f53f221c31..bca23d19f9 100644 --- a/src/frontends/WorkArea.h +++ b/src/frontends/WorkArea.h @@ -83,7 +83,7 @@ public: virtual void setScrollbarParams(int height, int pos, int line_height) = 0; /// - virtual void sheduleRedraw() = 0; + virtual void scheduleRedraw() = 0; /// redraw the screen, without using existing pixmap virtual void redraw(); diff --git a/src/frontends/qt4/GuiWorkArea.C b/src/frontends/qt4/GuiWorkArea.C index 482ae69847..10ccfe8b78 100644 --- a/src/frontends/qt4/GuiWorkArea.C +++ b/src/frontends/qt4/GuiWorkArea.C @@ -159,7 +159,7 @@ SyntheticMouseEvent::SyntheticMouseEvent() GuiWorkArea::GuiWorkArea(int w, int h, int id, LyXView & lyx_view) - : WorkArea(id, lyx_view), need_resize_(false), shedule_redraw_(false) + : WorkArea(id, lyx_view), need_resize_(false), schedule_redraw_(false) { cursor_ = new frontend::CursorWidget(); cursor_->hide(); @@ -535,13 +535,13 @@ void GuiWorkArea::updateScreen() void GuiWorkArea::showCursor(int x, int y, int h, CursorShape shape) { - if (shedule_redraw_) { + if (schedule_redraw_) { if (buffer_view_ && buffer_view_->buffer()) { buffer_view_->update(Update::Force); updateScreen(); viewport()->update(QRect(0, 0, viewport()->width(), viewport()->height())); } - shedule_redraw_ = false; + schedule_redraw_ = false; // Show the cursor immediately after the update. hideCursor(); toggleCursor(); diff --git a/src/frontends/qt4/GuiWorkArea.h b/src/frontends/qt4/GuiWorkArea.h index d9b2761113..a6e2096101 100644 --- a/src/frontends/qt4/GuiWorkArea.h +++ b/src/frontends/qt4/GuiWorkArea.h @@ -104,7 +104,7 @@ public: /// virtual void setScrollbarParams(int height, int pos, int line_height); /// - virtual void sheduleRedraw() { shedule_redraw_ = true; } + virtual void scheduleRedraw() { schedule_redraw_ = true; } /// update the passed area. void update(int x, int y, int w, int h); @@ -174,7 +174,7 @@ private: /// bool need_resize_; /// - bool shedule_redraw_; + bool schedule_redraw_; }; } // namespace frontend -- 2.39.2