diff options
author | Caolán McNamara <caolanm@redhat.com> | 2020-07-31 21:04:45 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2020-08-01 16:11:23 +0200 |
commit | 0898838bc962bae9ab698e1f585a67d832260110 (patch) | |
tree | e2d344ee9c7b0a7de4f8b41eefb20deabc901974 /vcl/source/outdev | |
parent | 6beec0ec54975aa02e391c223633a42f6f5afe0e (diff) |
tidy up language a bit
Change-Id: I3bc840da190e50f03bbd1cc57f49fbdb809e4be5
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/99901
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'vcl/source/outdev')
-rw-r--r-- | vcl/source/outdev/bitmap.cxx | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/vcl/source/outdev/bitmap.cxx b/vcl/source/outdev/bitmap.cxx index 83c1843a5300..508b7df307d3 100644 --- a/vcl/source/outdev/bitmap.cxx +++ b/vcl/source/outdev/bitmap.cxx @@ -1215,13 +1215,13 @@ void OutputDevice::DrawTransformedBitmapEx( const bool bMetafile(nullptr != mpMetaFile); /* - tdf#135325 typically in these OutputDevice methods the in - record-to-metafile case MetaFile is already written to before the test - against mbOutputClipped to determine that output to the current device - would result in no visual output. In this case the metafile is written - after the test, so we must continue past mbOutputClipped if recording to - a metafile. It's typical to record with a device of nominal size and - play back later against something of a totally different size. + tdf#135325 typically in these OutputDevice methods, for the in + record-to-metafile case the MetaFile is already written to before the + test against mbOutputClipped to determine that output to the current + device would result in no visual output. In this case the metafile is + written after the test, so we must continue past mbOutputClipped if + recording to a metafile. It's typical to record with a device of nominal + size and play back later against something of a totally different size. */ if (mbOutputClipped && !bMetafile) return; |