summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorChris Sherlock <chris.sherlock79@gmail.com>2014-11-22 21:53:22 +1100
committerChris Sherlock <chris.sherlock79@gmail.com>2014-11-22 22:38:03 +1100
commit7304f974d8ef60433662da92c2e172e45ca64bd5 (patch)
tree33bb944b7203491405aee1070222edab92e82603 /vcl
parent471ce7b54932c7abf76fd4af048bffe7b708205b (diff)
vcl: remove unnecessary typedef VCLXGraphicsList_impl
Change-Id: Iaaf2f0edf721567f88ffc948501548fddd648428
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/outdev/outdev.cxx4
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;
}