diff options
author | Khaled Hosny <khaledhosny@eglug.org> | 2014-01-10 23:12:57 +0200 |
---|---|---|
committer | Khaled Hosny <khaledhosny@eglug.org> | 2014-01-18 01:11:09 +0200 |
commit | 97ed0bdcb283a3c45d4b155515cd9ef5d97138ab (patch) | |
tree | 982e871e38f6999b4351b2ec1c01a06a6929dee7 /vcl/inc/sallayout.hxx | |
parent | 5e6d1e3332ea4cd31d2c5e739dc27bb37b34b4dc (diff) |
Use a more descriptive and distinct field name
It is not immediately clear what maRerun is, besides it can be
confused with regular maRuns.
Change-Id: Idc754a185149a9a4d5e7495b76d8e61f783b42d2
Diffstat (limited to 'vcl/inc/sallayout.hxx')
-rw-r--r-- | vcl/inc/sallayout.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/vcl/inc/sallayout.hxx b/vcl/inc/sallayout.hxx index 047308632e97..b824e74d627f 100644 --- a/vcl/inc/sallayout.hxx +++ b/vcl/inc/sallayout.hxx @@ -99,7 +99,7 @@ public: // data for bidi and glyph+script fallback ImplLayoutRuns maRuns; - ImplLayoutRuns maReruns; + ImplLayoutRuns maFallbackRuns; public: ImplLayoutArgs( const sal_Unicode* pStr, int nLength, @@ -115,12 +115,12 @@ public: { return maRuns.GetNextPos( nCharPos, bRTL ); } bool GetNextRun( int* nMinRunPos, int* nEndRunPos, bool* bRTL ); bool NeedFallback( int nCharPos, bool bRTL ) - { return maReruns.AddPos( nCharPos, bRTL ); } + { return maFallbackRuns.AddPos( nCharPos, bRTL ); } bool NeedFallback( int nMinRunPos, int nEndRunPos, bool bRTL ) - { return maReruns.AddRun( nMinRunPos, nEndRunPos, bRTL ); } + { return maFallbackRuns.AddRun( nMinRunPos, nEndRunPos, bRTL ); } // methods used by BiDi and glyph fallback bool NeedFallback() const - { return !maReruns.IsEmpty(); } + { return !maFallbackRuns.IsEmpty(); } bool PrepareFallback(); protected: |