summaryrefslogtreecommitdiff
path: root/sd/inc
diff options
context:
space:
mode:
authorRafael Dominguez <venccsralph@gmail.com>2012-03-25 16:27:08 -0430
committerCaolán McNamara <caolanm@redhat.com>2012-04-11 16:47:06 +0100
commit656f560585e96b697ce6955cff30b1064a79c2c4 (patch)
treee3b52f59f2b23a24bfae63d7c4b4ef9c378785cd /sd/inc
parent70263d2e6166f8ea171e1871d9896325c7d8efdf (diff)
Overload AbstractSdInsertPagesObjsDlg::GetList.
- Use vector instead of deprecated List class. - Use OUString instead of String.
Diffstat (limited to 'sd/inc')
-rw-r--r--sd/inc/sdabstdlg.hxx4
1 files changed, 4 insertions, 0 deletions
diff --git a/sd/inc/sdabstdlg.hxx b/sd/inc/sdabstdlg.hxx
index 8d3e6c09f79e..8a78929b0199 100644
--- a/sd/inc/sdabstdlg.hxx
+++ b/sd/inc/sdabstdlg.hxx
@@ -30,7 +30,10 @@
// include ---------------------------------------------------------------
+#include <vector>
+
#include <rtl/ref.hxx>
+#include <rtl/string.hxx>
#include <tools/solar.h>
#include <tools/string.hxx>
#include <sfx2/sfxdlg.hxx>
@@ -137,6 +140,7 @@ class AbstractSdInsertPagesObjsDlg : public VclAbstractDialog //add for SdInser
public:
virtual ::Window* GetWindow() = 0; //this method is added for return a ::Window type pointer
virtual List* GetList( sal_uInt16 nType ) = 0;
+ virtual void GetList ( const sal_uInt16 nType, std::vector<rtl::OUString> &rEntries ) = 0;
virtual sal_Bool IsLink() = 0;
virtual sal_Bool IsRemoveUnnessesaryMasterPages() const = 0;
};