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

vcl: remove AnimViewList_impl typedef also

Another typedef that destroys code readibility. I've removed AnimViewList_impl
because it's just a vector of ImplAnimView pointers.

Change-Id: I97e5867e1a7aeae575e45989ba7436867da9c808
üst 725150f4
...@@ -122,7 +122,6 @@ struct AInfo ...@@ -122,7 +122,6 @@ struct AInfo
}; };
class ImplAnimView; class ImplAnimView;
typedef ::std::vector< ImplAnimView* > AnimViewList_impl;
class VCL_DLLPUBLIC Animation class VCL_DLLPUBLIC Animation
{ {
...@@ -217,8 +216,8 @@ public: ...@@ -217,8 +216,8 @@ public:
private: private:
SAL_DLLPRIVATE static sal_uLong mnAnimCount; SAL_DLLPRIVATE static sal_uLong mnAnimCount;
std::vector< AnimationBitmap* >maList; std::vector< AnimationBitmap* > maList;
AnimViewList_impl maViewList; std::vector< ImplAnimView* > maViewList;
Link maNotifyLink; Link maNotifyLink;
BitmapEx maBitmapEx; BitmapEx maBitmapEx;
......
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