summaryrefslogtreecommitdiff
path: root/sc/source/core/tool/orcusxml.cxx
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@gmail.com>2012-10-12 21:32:09 -0400
committerKohei Yoshida <kohei.yoshida@gmail.com>2012-11-28 13:28:25 -0500
commit6f2013f164c2550073346bf175c1173c1032b598 (patch)
treeca9563407ec63829be24b2630d44ffd54acafe7a /sc/source/core/tool/orcusxml.cxx
parent0b69fbe315398fb5d1117d14ca347c171967dec9 (diff)
More progress on the dialog.
Change-Id: Ib07d6d5de7cd0d72356bbb7859342f5038f05f95
Diffstat (limited to 'sc/source/core/tool/orcusxml.cxx')
-rw-r--r--sc/source/core/tool/orcusxml.cxx22
1 files changed, 22 insertions, 0 deletions
diff --git a/sc/source/core/tool/orcusxml.cxx b/sc/source/core/tool/orcusxml.cxx
new file mode 100644
index 000000000000..4e9ef805ddc5
--- /dev/null
+++ b/sc/source/core/tool/orcusxml.cxx
@@ -0,0 +1,22 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+/*
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+
+#include "orcusxml.hxx"
+
+#include "svtools/treelistbox.hxx"
+
+ScOrcusXMLTreeParam::EntryData::EntryData(EntryType eType) :
+ meType(eType) {}
+
+ScOrcusXMLTreeParam::EntryData* ScOrcusXMLTreeParam::getUserData(SvLBoxEntry& rEntry)
+{
+ return static_cast<ScOrcusXMLTreeParam::EntryData*>(rEntry.GetUserData());
+}
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */