diff options
author | Chris Sherlock <chris.sherlock79@gmail.com> | 2014-11-22 21:53:22 +1100 |
---|---|---|
committer | Chris Sherlock <chris.sherlock79@gmail.com> | 2014-11-22 22:38:03 +1100 |
commit | 7304f974d8ef60433662da92c2e172e45ca64bd5 (patch) | |
tree | 33bb944b7203491405aee1070222edab92e82603 /vcl | |
parent | 471ce7b54932c7abf76fd4af048bffe7b708205b (diff) |
vcl: remove unnecessary typedef VCLXGraphicsList_impl
Change-Id: Iaaf2f0edf721567f88ffc948501548fddd648428
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/outdev/outdev.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/source/outdev/outdev.cxx b/vcl/source/outdev/outdev.cxx index 78eaddc114f7..b5a59adf82d9 100644 --- a/vcl/source/outdev/outdev.cxx +++ b/vcl/source/outdev/outdev.cxx @@ -379,9 +379,9 @@ css::uno::Reference< css::awt::XGraphics > OutputDevice::CreateUnoGraphics() return pWrapper ? pWrapper->CreateGraphics( this ) : css::uno::Reference< css::awt::XGraphics >(); } -VCLXGraphicsList_impl* OutputDevice::CreateUnoGraphicsList() +std::vector< VCLXGraphics* > *OutputDevice::CreateUnoGraphicsList() { - mpUnoGraphicsList = new VCLXGraphicsList_impl(); + mpUnoGraphicsList = new std::vector< VCLXGraphics* >(); return mpUnoGraphicsList; } |