summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--vcl/generic/glyphs/gcach_layout.cxx6
-rw-r--r--vcl/inc/generic/glyphcache.hxx2
2 files changed, 4 insertions, 4 deletions
diff --git a/vcl/generic/glyphs/gcach_layout.cxx b/vcl/generic/glyphs/gcach_layout.cxx
index abd04baf41cf..d47b3d2ceff1 100644
--- a/vcl/generic/glyphs/gcach_layout.cxx
+++ b/vcl/generic/glyphs/gcach_layout.cxx
@@ -50,7 +50,7 @@ void ServerFontLayout::DrawText( SalGraphics& rSalGraphics ) const
bool ServerFontLayout::LayoutText( ImplLayoutArgs& rArgs )
{
- return mrServerFont.GetLayoutEngine()->layout(*this, rArgs);
+ return mrServerFont.GetLayoutEngine()->Layout(*this, rArgs);
}
void ServerFontLayout::AdjustLayout( ImplLayoutArgs& rArgs )
@@ -316,7 +316,7 @@ public:
HbLayoutEngine(ServerFont&);
virtual ~HbLayoutEngine();
- virtual bool layout(ServerFontLayout&, ImplLayoutArgs&) SAL_OVERRIDE;
+ virtual bool Layout(ServerFontLayout&, ImplLayoutArgs&) SAL_OVERRIDE;
};
HbLayoutEngine::HbLayoutEngine(ServerFont& rServerFont)
@@ -351,7 +351,7 @@ struct HbScriptRun
typedef std::vector<HbScriptRun> HbScriptRuns;
-bool HbLayoutEngine::layout(ServerFontLayout& rLayout, ImplLayoutArgs& rArgs)
+bool HbLayoutEngine::Layout(ServerFontLayout& rLayout, ImplLayoutArgs& rArgs)
{
ServerFont& rFont = rLayout.GetServerFont();
FT_Face aFtFace = rFont.GetFtFace();
diff --git a/vcl/inc/generic/glyphcache.hxx b/vcl/inc/generic/glyphcache.hxx
index 6526cfbaf886..b45365a1d73e 100644
--- a/vcl/inc/generic/glyphcache.hxx
+++ b/vcl/inc/generic/glyphcache.hxx
@@ -316,7 +316,7 @@ class ServerFontLayoutEngine
public:
virtual ~ServerFontLayoutEngine() {}
- virtual bool layout(ServerFontLayout&, ImplLayoutArgs&) = 0;
+ virtual bool Layout(ServerFontLayout&, ImplLayoutArgs&) = 0;
};
class GlyphCachePeer