diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2020-02-27 23:07:04 +0100 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2020-02-28 07:30:31 +0100 |
commit | 19f7cd18d56427dffcd85a9ebd2588f28ddf3cbd (patch) | |
tree | 29f6ceae707f8907a7e770f7c859eb7e6310f36b /svx | |
parent | d61cd023f549c41a48f2b7fbf821ad547897ae8a (diff) |
Fix typo
Change-Id: Idfaa34e8bc1b293d4856415cfeb5a822cdaaa114
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/89653
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/svdraw/svdpntv.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/svdraw/svdpntv.cxx b/svx/source/svdraw/svdpntv.cxx index 32feb27b3f4f..181a2bfe1fdb 100644 --- a/svx/source/svdraw/svdpntv.cxx +++ b/svx/source/svdraw/svdpntv.cxx @@ -66,7 +66,7 @@ using namespace ::com::sun::star; SdrPaintWindow* SdrPaintView::FindPaintWindow(const OutputDevice& rOut) const { - // back to loop - there is more to test than a std::find_if and a lamba can do + // back to loop - there is more to test than a std::find_if and a lambda can do for(auto& candidate : maPaintWindows) { if(&(candidate->GetOutputDevice()) == &rOut) |