From 36a6806fafafa5f3c7768f97c24674c812c0cbf5 Mon Sep 17 00:00:00 2001 From: Nathan Jeffords Date: Wed, 6 Mar 2013 09:25:50 -0800 Subject: [PATCH] drop the leading 'I' from the book page control interfaces --- apps/openmw/mwgui/bookpage.cpp | 78 ++++++++++----------- apps/openmw/mwgui/bookpage.hpp | 30 ++++---- apps/openmw/mwgui/journalbooks.cpp | 96 +++++++++++++------------- apps/openmw/mwgui/journalbooks.hpp | 4 +- apps/openmw/mwgui/journalwindow.cpp | 48 ++++++------- apps/openmw/mwgui/journalwindow.hpp | 6 +- apps/openmw/mwgui/windowmanagerimp.cpp | 2 +- apps/openmw/mwgui/windowmanagerimp.hpp | 4 +- 8 files changed, 134 insertions(+), 134 deletions(-) diff --git a/apps/openmw/mwgui/bookpage.cpp b/apps/openmw/mwgui/bookpage.cpp index e8cbd8c43..309e4ea9b 100644 --- a/apps/openmw/mwgui/bookpage.cpp +++ b/apps/openmw/mwgui/bookpage.cpp @@ -15,9 +15,9 @@ namespace MWGui { - struct TypesetBook; + struct TypesetBookImpl; struct PageDisplay; - struct BookPage; + struct BookPageImpl; } using namespace MyGUI; @@ -27,16 +27,16 @@ static bool ucs_space (int code_point); static bool ucs_line_break (int code_point); static bool ucs_breaking_space (int code_point); -struct IBookTypesetter::IStyle { virtual ~IStyle () {} }; +struct BookTypesetter::Style { virtual ~Style () {} }; -struct MWGui::TypesetBook : ITypesetBook +struct MWGui::TypesetBookImpl : TypesetBook { typedef std::vector content; typedef std::list contents; typedef utf8_stream::point utf8_point; typedef std::pair range; - struct Style : IBookTypesetter::IStyle + struct StyleImpl : BookTypesetter::Style { IFont* mFont; Colour mHotColour; @@ -66,11 +66,11 @@ struct MWGui::TypesetBook : ITypesetBook } }; - typedef std::list