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@googlemail.com>2014-06-10 13:52:29 +0200
commit0245bda7c3850171ce68ec61dbe6745e32b8f4a2 (patch)
tree31f6df4eb2472e3d982c0646993ce65aff05f4cf /include
parent2980f4986d1349cb83b13794d60c85950b3b9d6d (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 c452edf13d07..d937b5926498 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
};
}