diff options
author | Joseph Powers <jpowers27@cox.net> | 2011-07-09 16:01:45 -0700 |
---|---|---|
committer | Joseph Powers <jpowers27@cox.net> | 2011-07-09 16:01:45 -0700 |
commit | 7d1a41c189e800c453c4855d2b38843bbd2dd209 (patch) | |
tree | b385628a6aba31ce477a474b91049c94cce2a16a /svtools | |
parent | 2da3b7076c00d510b2e2010bba2f362ba7df54d1 (diff) |
Replace List with std::vector< AInfo* >
I actually moved the List member from the class to a class method. I think
this is safe because the member was only used in one method and it's life-
span was limited to the one method (populate, process, dispose - all in one
"if" block.
I also removed all the member's export methods since no one used them.
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/inc/svtools/grfmgr.hxx | 1 | ||||
-rw-r--r-- | svtools/source/graphic/grfmgr.cxx | 5 |
2 files changed, 0 insertions, 6 deletions
diff --git a/svtools/inc/svtools/grfmgr.hxx b/svtools/inc/svtools/grfmgr.hxx index e81458644d50..0395a9d5afe5 100644 --- a/svtools/inc/svtools/grfmgr.hxx +++ b/svtools/inc/svtools/grfmgr.hxx @@ -409,7 +409,6 @@ public: sal_Bool HasRenderGraphic() const { return mbHasRenderGraphic; } void ResetAnimationLoopCount(); - List* GetAnimationInfoList() const; Link GetAnimationNotifyHdl() const { return maGraphic.GetAnimationNotifyHdl(); } void SetAnimationNotifyHdl( const Link& rLink ); diff --git a/svtools/source/graphic/grfmgr.cxx b/svtools/source/graphic/grfmgr.cxx index fdfa92a72b00..63df21b3993d 100644 --- a/svtools/source/graphic/grfmgr.cxx +++ b/svtools/source/graphic/grfmgr.cxx @@ -547,11 +547,6 @@ void GraphicObject::SetAnimationNotifyHdl( const Link& rLink ) maGraphic.SetAnimationNotifyHdl( rLink ); } -List* GraphicObject::GetAnimationInfoList() const -{ - return maGraphic.GetAnimationInfoList(); -} - sal_Bool GraphicObject::Draw( OutputDevice* pOut, const Point& rPt, const Size& rSz, const GraphicAttr* pAttr, sal_uLong nFlags ) { |