From e171a6a69fc6e88a51dd5f4e2f8b4f87ffdb0a0d Mon Sep 17 00:00:00 2001 From: John Spray Date: Mon, 29 Nov 2004 21:44:26 +0000 Subject: [PATCH] whitespace git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@9324 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/frontends/gtk/GErrorList.C | 2 +- src/frontends/gtk/GMathsMatrix.C | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/frontends/gtk/GErrorList.C b/src/frontends/gtk/GErrorList.C index e43d15bacc..2f2b53e5cb 100644 --- a/src/frontends/gtk/GErrorList.C +++ b/src/frontends/gtk/GErrorList.C @@ -56,7 +56,7 @@ void GErrorList::doBuild() void GErrorList::update() { - setTitle(controller().name()); + setTitle(controller().name()); updateContents(); } diff --git a/src/frontends/gtk/GMathsMatrix.C b/src/frontends/gtk/GMathsMatrix.C index 8c17a6f00e..038da41a86 100644 --- a/src/frontends/gtk/GMathsMatrix.C +++ b/src/frontends/gtk/GMathsMatrix.C @@ -102,10 +102,10 @@ void GMathsMatrix::updateHorzAlignEntry() if (ignoreHorzAlign_) return; Glib::ustring orig = horzalignentry_->get_text(); - Glib::ustring stripped; + Glib::ustring stripped; - Glib::ustring::iterator cur; - for (cur = orig.begin(); cur != orig.end(); ++cur) { + Glib::ustring::iterator cur; + for (cur = orig.begin(); cur != orig.end(); ++cur) { if (*cur == 'c' || *cur == 'l' || *cur == 'r' || *cur == '|') stripped += *cur; @@ -125,7 +125,7 @@ void GMathsMatrix::updateHorzAlignEntry() barcount = countbars(stripped); } - if (orig.compare(stripped) != 0) { + if (orig.compare(stripped) != 0) { ignoreHorzAlign_ = true; horzalignentry_->set_text(stripped); ignoreHorzAlign_ = false; @@ -135,8 +135,8 @@ void GMathsMatrix::updateHorzAlignEntry() int GMathsMatrix::countbars(Glib::ustring str) { int barcount = 0; - Glib::ustring::iterator cur = str.begin(); - Glib::ustring::iterator end = str.end(); + Glib::ustring::iterator cur = str.begin(); + Glib::ustring::iterator end = str.end(); for (; cur != end; ++cur) { if (*cur == '|') ++barcount; -- 2.39.5