summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTor Lillqvist <tml@iki.fi>2013-04-08 11:24:15 +0300
committerTor Lillqvist <tml@iki.fi>2013-04-08 11:46:22 +0300
commit6fe69ec3c0b7c41f02fa8f789ef80f33b6b7d0bf (patch)
tree707323edc663d97b63888b94cf90bc318b2fc0cd
parentCheck for the C++11 "final" specifier and introduce SAL_FINAL (diff)
downloadcore-6fe69ec3c0b7c41f02fa8f789ef80f33b6b7d0bf.tar.gz
core-6fe69ec3c0b7c41f02fa8f789ef80f33b6b7d0bf.zip
Use SAL_FINAL here
Sure, not that useful in this case (where it is quite obvious anyway that the class is not derived from), but just to verify that the SAL_FINAL thing works. Change-Id: Icef6eb64e278354694145bf98f02b9ffe5db7da7
-rw-r--r--vcl/coretext/salcoretextlayout.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/coretext/salcoretextlayout.cxx b/vcl/coretext/salcoretextlayout.cxx
index 6502b17a2782..4dd4ff469d16 100644
--- a/vcl/coretext/salcoretextlayout.cxx
+++ b/vcl/coretext/salcoretextlayout.cxx
@@ -30,7 +30,7 @@
#include "headless/svpgdi.hxx"
#endif
-class CoreTextLayout : public SalLayout
+class CoreTextLayout SAL_FINAL : public SalLayout
{
public:
CoreTextLayout( QuartzSalGraphics* graphics, CoreTextStyleInfo* style);