diff options
author | Khaled Hosny <khaledhosny@eglug.org> | 2016-11-10 01:48:29 +0200 |
---|---|---|
committer | Khaled Hosny <khaledhosny@eglug.org> | 2016-11-10 01:48:29 +0200 |
commit | f6391d9696bfa7485bf785ac81edef4d5441e232 (patch) | |
tree | 01e32454cac4f442f3c81a43da878238a8d6b5a9 | |
parent | f26df72f6e424492d101f527deb81f550ff3c941 (diff) |
Who would think sal_Int32 is not the same as int32_t
Change-Id: I107cf27ea36e092ba3be45d255cc8622eb1c726f
-rw-r--r-- | vcl/source/gdi/CommonSalLayout.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/source/gdi/CommonSalLayout.cxx b/vcl/source/gdi/CommonSalLayout.cxx index 965b52a53f5c..705318c15676 100644 --- a/vcl/source/gdi/CommonSalLayout.cxx +++ b/vcl/source/gdi/CommonSalLayout.cxx @@ -412,10 +412,10 @@ bool CommonSalLayout::LayoutText(ImplLayoutArgs& rArgs) // orientation. if (rArgs.mnFlags & SalLayoutFlags::Vertical) { - int32_t nIdx = nMinRunPos; + sal_Int32 nIdx = nMinRunPos; while (nIdx < nEndRunPos) { - int32_t nPrevIdx = nIdx; + sal_Int32 nPrevIdx = nIdx; sal_UCS4 aChar = rArgs.mrStr.iterateCodePoints(&nIdx); switch (vcl::GetVerticalOrientation(aChar)) { |