From 6d25220ad6c869bb7cd79cf678d092b81558a8d2 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Wed, 8 Jan 2014 14:29:55 +0200 Subject: remove unnecessary use of OUString* in FileList. There no benefit in storing a ref-counted value class like OUString by pointer in a std::vector. Change-Id: I302bc460de67c7fe324d745f3225df4e17195486 --- include/sot/filelist.hxx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'include') diff --git a/include/sot/filelist.hxx b/include/sot/filelist.hxx index 32499df78133..631f3ca05a1d 100644 --- a/include/sot/filelist.hxx +++ b/include/sot/filelist.hxx @@ -24,7 +24,8 @@ #include #include -typedef ::std::vector< OUString* > FileStringList; + +typedef ::std::vector< OUString > FileStringList; class SOT_DLLPUBLIC FileList : public SvDataCopyStream { -- cgit