summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2020-12-03 00:23:46 +0200
committerTor Lillqvist <tml@collabora.com>2020-12-03 00:26:49 +0200
commit65dc2fdc67537fe061052d53811c10bf03d5a113 (patch)
treed21f71a6e3fb72e77464b4cf8dd770f53d1848df
parentcf61ce8bc95ba0bc27070b503360dc5ac7a204b3 (diff)
There is nothing called "Quartz layer"
We mean CGLayer, so say so. Change-Id: Iaa24471ce790114dc5cf2bbf353f9aa4a1d59893
-rw-r--r--vcl/inc/quartz/salvd.h2
-rw-r--r--vcl/quartz/salvd.cxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/vcl/inc/quartz/salvd.h b/vcl/inc/quartz/salvd.h
index 41d43fa5e538..939bd041cee1 100644
--- a/vcl/inc/quartz/salvd.h
+++ b/vcl/inc/quartz/salvd.h
@@ -43,7 +43,7 @@ private:
bool mbForeignContext; // is mxContext from outside VCL
CGContextHolder maBitmapContext;
int mnBitmapDepth;
- CGLayerHolder maLayer; // Quartz layer
+ CGLayerHolder maLayer;
AquaSalGraphics* mpGraphics; // current VirDev graphics
tools::Long mnWidth;
diff --git a/vcl/quartz/salvd.cxx b/vcl/quartz/salvd.cxx
index 57ba971a927a..6462a51573ce 100644
--- a/vcl/quartz/salvd.cxx
+++ b/vcl/quartz/salvd.cxx
@@ -228,7 +228,7 @@ bool AquaSalVirtualDevice::SetSize( tools::Long nDX, tools::Long nDY )
mnWidth = nDX;
mnHeight = nDY;
- // create a Quartz layer matching to the intended virdev usage
+ // create a CGLayer matching to the intended virdev usage
CGContextHolder xCGContextHolder;
if( mnBitmapDepth && (mnBitmapDepth < 16) )
{