vcl/source/gdi/textlayout.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit bdb8c1796646fc89ae7e11cd0e8f3be1cbdcb848 Author: Tomoyuki Kubota <himajin100...@gmail.com> AuthorDate: Fri Oct 15 15:34:04 2021 +0200 Commit: Noel Grandin <noel.gran...@collabora.co.uk> CommitDate: Sat Oct 16 07:03:18 2021 +0200 adapt to the change from tools::Long* to std::vector<tools::Long>* since d4dc6b5c Change-Id: Ic2104185aec40e01b81d3559c161d894a473d3a7 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/123631 Tested-by: Noel Grandin <noel.gran...@collabora.co.uk> Reviewed-by: Noel Grandin <noel.gran...@collabora.co.uk> diff --git a/vcl/source/gdi/textlayout.cxx b/vcl/source/gdi/textlayout.cxx index 94a24254f99a..738b6d460fcb 100644 --- a/vcl/source/gdi/textlayout.cxx +++ b/vcl/source/gdi/textlayout.cxx @@ -177,7 +177,7 @@ namespace vcl aTrace.append( " = ( " ); for ( sal_Int32 i=0; i<_nLength; ) { - aTrace.append( _pDXAry[i] ); + aTrace.append( _pDXAry->at(i) ); if ( ++i < _nLength ) aTrace.append( ", " ); }