Kaydet (Commit) 4d12fecb authored tarafından Markus Mohrhard's avatar Markus Mohrhard

make that variable protected again

Change-Id: I17235397e490458c250165c36bec97bf1ce326d7
üst 439550c9
...@@ -34,9 +34,10 @@ namespace vcl { ...@@ -34,9 +34,10 @@ namespace vcl {
// avoid problems where poppler's FontInfo is picked up // avoid problems where poppler's FontInfo is picked up
class VCL_DLLPUBLIC FontInfo : public Font class VCL_DLLPUBLIC FontInfo : public Font
{ {
friend class OutputDevice; friend class ::OutputDevice;
protected: protected:
ImplFontMetric* mpImplMetric; // Implementation
public: public:
FontInfo(); FontInfo();
...@@ -49,7 +50,6 @@ public: ...@@ -49,7 +50,6 @@ public:
bool operator==( const FontInfo& ) const; bool operator==( const FontInfo& ) const;
bool operator!=( const FontInfo& rInfo ) const bool operator!=( const FontInfo& rInfo ) const
{ return !operator==( rInfo ); } { return !operator==( rInfo ); }
ImplFontMetric* mpImplMetric; // Implementation
}; };
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment