summaryrefslogtreecommitdiff
path: root/sc/source/ui/inc/datastreamdlg.hxx
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@collabora.com>2013-12-17 22:38:37 -0500
committerKohei Yoshida <kohei.yoshida@collabora.com>2013-12-18 10:13:32 -0500
commit6dc1ea1c67fbe748fc84a0cf0b443545c3b5cbc3 (patch)
tree0630976354159b90f62c98a728ffc54afef1f2ba /sc/source/ui/inc/datastreamdlg.hxx
parent9c369f71830099e583946a90158aa3838c056f98 (diff)
Pass enum values around rather than OUString ones.
Ditto with the range type. Change-Id: Iab37d50b6d58d76c60872f49f13d77ff0c918974
Diffstat (limited to 'sc/source/ui/inc/datastreamdlg.hxx')
-rw-r--r--sc/source/ui/inc/datastreamdlg.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sc/source/ui/inc/datastreamdlg.hxx b/sc/source/ui/inc/datastreamdlg.hxx
index e3308f8d4dd9..d817743128e8 100644
--- a/sc/source/ui/inc/datastreamdlg.hxx
+++ b/sc/source/ui/inc/datastreamdlg.hxx
@@ -13,14 +13,14 @@
#include <vcl/dialog.hxx>
#include <vcl/layout.hxx>
+#include <datastream.hxx>
+
class ScDocShell;
class SvtURLBox;
class ScRange;
namespace sc {
-class DataStream;
-
class DataStreamDlg : public ModalDialog
{
ScDocShell *mpDocShell;
@@ -51,7 +51,7 @@ public:
void Init(
const OUString& rURL, const ScRange& rRange, const sal_Int32 nLimit,
- const OUString& rMove, const sal_uInt32 nSettings);
+ DataStream::MoveType eMove, const sal_uInt32 nSettings);
void StartStream(DataStream *pStream = 0);
};