summaryrefslogtreecommitdiffstats
path: root/vcl/inc/quartz/common.h
diff options
context:
space:
mode:
Diffstat (limited to 'vcl/inc/quartz/common.h')
-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 8e3f28669628..c596ef22addc 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 egly if construct everywhere
+// of an object, which force us to peper 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)