From 4d12fecb5b3891a316d405a9e61280465172a319 Mon Sep 17 00:00:00 2001 From: Markus Mohrhard Date: Wed, 4 Jun 2014 23:37:40 +0200 Subject: make that variable protected again Change-Id: I17235397e490458c250165c36bec97bf1ce326d7 --- include/vcl/metric.hxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/vcl') diff --git a/include/vcl/metric.hxx b/include/vcl/metric.hxx index 160b9b377d69..a0ef28842df0 100644 --- a/include/vcl/metric.hxx +++ b/include/vcl/metric.hxx @@ -34,9 +34,10 @@ namespace vcl { // avoid problems where poppler's FontInfo is picked up class VCL_DLLPUBLIC FontInfo : public Font { - friend class OutputDevice; + friend class ::OutputDevice; protected: + ImplFontMetric* mpImplMetric; // Implementation public: FontInfo(); @@ -49,7 +50,6 @@ public: bool operator==( const FontInfo& ) const; bool operator!=( const FontInfo& rInfo ) const { return !operator==( rInfo ); } - ImplFontMetric* mpImplMetric; // Implementation }; } -- cgit