summaryrefslogtreecommitdiff
path: root/vcl/inc/quartz
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2015-07-02 18:25:58 +0200
committerSamuel Mehrbrodt <s.mehrbrodt@gmail.com>2015-07-04 10:18:19 +0000
commit462e986e0dbd533b3a15696555e08489963c9542 (patch)
tree711fc2581ec8b565fcab533350aa44e85e7604a7 /vcl/inc/quartz
parent8db705fc7542f3ee45eb5d8c1c70ccf15ecc7581 (diff)
Fix typos
Change-Id: Id9296115f30858e7fd470a199e59343a96d7deec Reviewed-on: https://gerrit.libreoffice.org/16712 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Samuel Mehrbrodt <s.mehrbrodt@gmail.com>
Diffstat (limited to 'vcl/inc/quartz')
-rw-r--r--vcl/inc/quartz/common.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/inc/quartz/common.h b/vcl/inc/quartz/common.h
index c596ef22addc..49c7e1a9282c 100644
--- a/vcl/inc/quartz/common.h
+++ b/vcl/inc/quartz/common.h
@@ -35,7 +35,7 @@
// CoreFoundation designers, in their wisdom, decided that CFRelease of NULL
// cause a Crash, yet few API can return NULL when asking for the creation
-// of an object, which force us to peper the code with ugly if construct everywhere
+// of an object, which force us to paper the code with ugly if construct everywhere
// and open the door to very nasty crash on rare occasion
// this macro hide the mess
#define SafeCFRelease(a) do { if(a) { CFRelease(a); (a)=NULL; } } while(false)