Kaydet (Commit) abce6385 authored tarafından Chris Sherlock's avatar Chris Sherlock

vcl: make all members of ImplAnimView private

I'm making Animation a friend class of ImplAnimView. Nothing should be using
ImplAnimView other than Animation - so to enforce this I'm making all member
functions private. This is part of general cleanup of vcl's Animation.

Change-Id: Ib4746d31c14b1b2caeed61cae99c61fca0e02abc
üst b5dd21e1
......@@ -31,6 +31,8 @@ class ImplAnimView
{
private:
friend class Animation;
Animation* mpParent;
OutputDevice* mpOut;
long mnExtraData;
......@@ -55,8 +57,8 @@ private:
void ImplGetPosSize( const AnimationBitmap& rAnm, Point& rPosPix, Size& rSizePix );
void ImplDraw( sal_uLong nPos, VirtualDevice* pVDev );
public:
private:
ImplAnimView( Animation* pParent, OutputDevice* pOut,
const Point& rPt, const Size& rSz, sal_uLong nExtraData,
OutputDevice* pFirstFrameOutDev = NULL );
......
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