summaryrefslogtreecommitdiff
path: root/sc/source/ui/inc/dapitype.hxx
diff options
context:
space:
mode:
authorKohei Yoshida <kyoshida@novell.com>2011-03-01 15:57:26 -0500
committerKohei Yoshida <kyoshida@novell.com>2011-03-01 16:15:59 -0500
commit86c1bd3103eb464dd90c7a87a4172c358181c633 (patch)
tree476fe4b187206010ee388f18affb200e06213ddd /sc/source/ui/inc/dapitype.hxx
parent65b0689ed0e28a82fdaa24268dba9d65654975d3 (diff)
Put all the other pieces into place.
Now you can specify a named range as the data source for a new data pilot table.
Diffstat (limited to 'sc/source/ui/inc/dapitype.hxx')
-rw-r--r--sc/source/ui/inc/dapitype.hxx9
1 files changed, 5 insertions, 4 deletions
diff --git a/sc/source/ui/inc/dapitype.hxx b/sc/source/ui/inc/dapitype.hxx
index ff4f3863eef8..6c3ba731a342 100644
--- a/sc/source/ui/inc/dapitype.hxx
+++ b/sc/source/ui/inc/dapitype.hxx
@@ -36,8 +36,6 @@
#include <vcl/lstbox.hxx>
#include <com/sun/star/uno/Sequence.hxx>
-#include <vector>
-
//------------------------------------------------------------------------
class ScDataPilotSourceTypeDlg : public ModalDialog
@@ -46,9 +44,9 @@ private:
FixedLine aFlFrame;
RadioButton aBtnSelection;
RadioButton aBtnNamedRange;
- ListBox aLbNamedRange;
RadioButton aBtnDatabase;
RadioButton aBtnExternal;
+ ListBox aLbNamedRange;
OKButton aBtnOk;
CancelButton aBtnCancel;
HelpButton aBtnHelp;
@@ -61,7 +59,10 @@ public:
bool IsExternal() const;
bool IsNamedRange() const;
rtl::OUString GetSelectedNamedRange() const;
- void SetNamedRanges(const ::std::vector<rtl::OUString>& rNames);
+ void AppendNamedRange(const rtl::OUString& rNames);
+
+private:
+ DECL_LINK( RadioClickHdl, RadioButton * );
};