vcl/source/text/textlayout.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit 6802878057e91a7d32b143d4e177de9b30e09a25 Author: Tomoyuki Kubota <[email protected]> AuthorDate: Sun Mar 24 09:42:23 2024 +0100 Commit: Caolán McNamara <[email protected]> CommitDate: Sun Mar 24 20:52:32 2024 +0100 for compilaton with OSL_DEBUG_LEVEL > 1, adapt to the commit f9395a12, which replaced std::vector with KernArray Change-Id: I12e918814a29fff114c5eae320498a8fc0229dea Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165233 Tested-by: Jenkins Tested-by: Caolán McNamara <[email protected]> Reviewed-by: Caolán McNamara <[email protected]> diff --git a/vcl/source/text/textlayout.cxx b/vcl/source/text/textlayout.cxx index 303ea5b28659..7f69c1726fe1 100644 --- a/vcl/source/text/textlayout.cxx +++ b/vcl/source/text/textlayout.cxx @@ -606,7 +606,7 @@ namespace vcl aTrace.append( " = ( " ); for ( sal_Int32 i=0; i<_nLength; ) { - aTrace.append( _pDXAry->at(i) ); + aTrace.append( _pDXAry->get(i) ); if ( ++i < _nLength ) aTrace.append( ", " ); }
