diff options
Diffstat (limited to 'sc/source/ui/inc/namepast.hxx')
-rw-r--r-- | sc/source/ui/inc/namepast.hxx | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sc/source/ui/inc/namepast.hxx b/sc/source/ui/inc/namepast.hxx index a5d7e8127ab7..618201aead6c 100644 --- a/sc/source/ui/inc/namepast.hxx +++ b/sc/source/ui/inc/namepast.hxx @@ -34,6 +34,8 @@ #include <vcl/fixed.hxx> #include <vcl/lstbox.hxx> +#include <vector> + #include "scui_def.hxx" class ScRangeName; @@ -53,7 +55,8 @@ protected: public: ScNamePasteDlg( Window * pParent, const ScRangeName* pList, const ScRangeName* pLocalList, bool bInsList=true ); - String GetSelectedName() const; + std::vector<rtl::OUString> GetSelectedNames() const; + bool IsAllSelected() const; }; |