summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Sherlock <chris.sherlock79@gmail.com>2015-01-11 19:40:31 +1100
committerChris Sherlock <chris.sherlock79@gmail.com>2015-01-11 19:40:31 +1100
commite46c61addd616a80c40e58e021326aa798eb6921 (patch)
tree8cca813190fe2cbed62d421dacefb20c008f2311
parentvcl: LayoutEngine::layout() to LayoutEngine::Layout() (diff)
downloadcore-e46c61addd616a80c40e58e021326aa798eb6921.tar.gz
core-e46c61addd616a80c40e58e021326aa798eb6921.zip
vcl: ServerFontLayout::setNeedFallback() -> SetNeedFallback()
Change-Id: I28f2b4df57b8bc521e36e72b1f788fc89cfa7caf
-rw-r--r--vcl/generic/glyphs/gcach_layout.cxx4
-rw-r--r--vcl/inc/generic/glyphcache.hxx2
2 files changed, 3 insertions, 3 deletions
diff --git a/vcl/generic/glyphs/gcach_layout.cxx b/vcl/generic/glyphs/gcach_layout.cxx
index d47b3d2ceff1..8719844a3622 100644
--- a/vcl/generic/glyphs/gcach_layout.cxx
+++ b/vcl/generic/glyphs/gcach_layout.cxx
@@ -76,7 +76,7 @@ void ServerFontLayout::AdjustLayout( ImplLayoutArgs& rArgs )
}
}
-void ServerFontLayout::setNeedFallback(ImplLayoutArgs& rArgs, sal_Int32 nCharPos,
+void ServerFontLayout::SetNeedFallback(ImplLayoutArgs& rArgs, sal_Int32 nCharPos,
bool bRightToLeft)
{
if (nCharPos < 0)
@@ -446,7 +446,7 @@ bool HbLayoutEngine::Layout(ServerFontLayout& rLayout, ImplLayoutArgs& rArgs)
// if needed request glyph fallback by updating LayoutArgs
if (!nGlyphIndex)
{
- rLayout.setNeedFallback(rArgs, nCharPos, bRightToLeft);
+ rLayout.SetNeedFallback(rArgs, nCharPos, bRightToLeft);
if (SAL_LAYOUT_FOR_FALLBACK & rArgs.mnFlags)
continue;
}
diff --git a/vcl/inc/generic/glyphcache.hxx b/vcl/inc/generic/glyphcache.hxx
index b45365a1d73e..d5378594264d 100644
--- a/vcl/inc/generic/glyphcache.hxx
+++ b/vcl/inc/generic/glyphcache.hxx
@@ -294,7 +294,7 @@ public:
virtual void AdjustLayout( ImplLayoutArgs& ) SAL_OVERRIDE;
virtual void DrawText( SalGraphics& ) const SAL_OVERRIDE;
- void setNeedFallback(
+ void SetNeedFallback(
ImplLayoutArgs& rArgs,
sal_Int32 nIndex,
bool bRightToLeft);