summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorTomoyuki Kubota <himajin100000@gmail.com>2021-10-15 15:34:04 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2021-10-16 07:03:18 +0200
commitbdb8c1796646fc89ae7e11cd0e8f3be1cbdcb848 (patch)
treede878ebcaf49c2d2c04b3929b5db728ba55f358a /vcl
parentf5cffe30843b4afa81123ab972347e3142c9b87b (diff)
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.grandin@collabora.co.uk> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/gdi/textlayout.cxx2
1 files changed, 1 insertions, 1 deletions
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( ", " );
}