Kaydet (Commit) e46c61ad authored tarafından Chris Sherlock's avatar Chris Sherlock

vcl: ServerFontLayout::setNeedFallback() -> SetNeedFallback()

Change-Id: I28f2b4df57b8bc521e36e72b1f788fc89cfa7caf
üst 7ac95954
...@@ -76,7 +76,7 @@ void ServerFontLayout::AdjustLayout( ImplLayoutArgs& rArgs ) ...@@ -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) bool bRightToLeft)
{ {
if (nCharPos < 0) if (nCharPos < 0)
...@@ -446,7 +446,7 @@ bool HbLayoutEngine::Layout(ServerFontLayout& rLayout, ImplLayoutArgs& rArgs) ...@@ -446,7 +446,7 @@ bool HbLayoutEngine::Layout(ServerFontLayout& rLayout, ImplLayoutArgs& rArgs)
// if needed request glyph fallback by updating LayoutArgs // if needed request glyph fallback by updating LayoutArgs
if (!nGlyphIndex) if (!nGlyphIndex)
{ {
rLayout.setNeedFallback(rArgs, nCharPos, bRightToLeft); rLayout.SetNeedFallback(rArgs, nCharPos, bRightToLeft);
if (SAL_LAYOUT_FOR_FALLBACK & rArgs.mnFlags) if (SAL_LAYOUT_FOR_FALLBACK & rArgs.mnFlags)
continue; continue;
} }
......
...@@ -294,7 +294,7 @@ public: ...@@ -294,7 +294,7 @@ public:
virtual void AdjustLayout( ImplLayoutArgs& ) SAL_OVERRIDE; virtual void AdjustLayout( ImplLayoutArgs& ) SAL_OVERRIDE;
virtual void DrawText( SalGraphics& ) const SAL_OVERRIDE; virtual void DrawText( SalGraphics& ) const SAL_OVERRIDE;
void setNeedFallback( void SetNeedFallback(
ImplLayoutArgs& rArgs, ImplLayoutArgs& rArgs,
sal_Int32 nIndex, sal_Int32 nIndex,
bool bRightToLeft); bool bRightToLeft);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment