summaryrefslogtreecommitdiff
path: root/sc/source/core/data/dpnumgroupinfo.cxx
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@suse.com>2012-03-06 01:38:14 -0500
committerKohei Yoshida <kohei.yoshida@gmail.com>2012-03-09 11:13:31 -0500
commit5e7daf4ab990c4719332e1c6df06cc477bdb3631 (patch)
tree4040b39df68da849712a0eedf477e7bd61671e4b /sc/source/core/data/dpnumgroupinfo.cxx
parentc2f8b7a17e71f9379db7d44e763ad831cfd27825 (diff)
Display special first/last date names correctly.
Diffstat (limited to 'sc/source/core/data/dpnumgroupinfo.cxx')
-rw-r--r--sc/source/core/data/dpnumgroupinfo.cxx35
1 files changed, 35 insertions, 0 deletions
diff --git a/sc/source/core/data/dpnumgroupinfo.cxx b/sc/source/core/data/dpnumgroupinfo.cxx
new file mode 100644
index 000000000000..6d4e4fa250ce
--- /dev/null
+++ b/sc/source/core/data/dpnumgroupinfo.cxx
@@ -0,0 +1,35 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+/*
+ * Version: MPL 1.1 / GPLv3+ / LGPLv3+
+ *
+ * The contents of this file are subject to the Mozilla Public License Version
+ * 1.1 (the "License"); you may not use this file except in compliance with
+ * the License or as specified alternatively below. You may obtain a copy of
+ * the License at http://www.mozilla.org/MPL/
+ *
+ * Software distributed under the License is distributed on an "AS IS" basis,
+ * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
+ * for the specific language governing rights and limitations under the
+ * License.
+ *
+ * Major Contributor(s):
+ * Copyright (C) 2012 Kohei Yoshida <kohei.yoshida@suse.com>
+ *
+ * All Rights Reserved.
+ *
+ * For minor contributions see the git repository.
+ *
+ * Alternatively, the contents of this file may be used under the terms of
+ * either the GNU General Public License Version 3 or later (the "GPLv3+"), or
+ * the GNU Lesser General Public License Version 3 or later (the "LGPLv3+"),
+ * in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable
+ * instead of those above.
+ */
+
+#include "dpnumgroupinfo.hxx"
+
+ScDPNumGroupInfo::ScDPNumGroupInfo() :
+ mbEnable(false), mbDateValues(false), mbAutoStart(false), mbAutoEnd(false),
+ mfStart(0.0), mfEnd(0.0), mfStep(0.0) {}
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */