summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@collabora.co.uk>2014-06-04 23:37:40 +0200
committerMarkus Mohrhard <markus.mohrhard@collabora.co.uk>2014-06-07 04:48:16 +0200
commit4d12fecb5b3891a316d405a9e61280465172a319 (patch)
tree85ae08474dba18deeac0f6dbd8aa1561a83cf167 /include
parent439550c9f1c848023b4b95266f9d78671c468ee3 (diff)
make that variable protected again
Change-Id: I17235397e490458c250165c36bec97bf1ce326d7
Diffstat (limited to 'include')
-rw-r--r--include/vcl/metric.hxx4
1 files changed, 2 insertions, 2 deletions
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
};
}