summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2019-06-23 19:32:41 +0900
committerTor Lillqvist <tml@collabora.com>2019-07-08 10:03:25 +0200
commit86876ff86ef19af20e1c7202e029bbde44051a07 (patch)
treed093bccb77da16936a9ede1b1a41a02cd6da7fa3
parentc554afd565ea515decd483a9068f6590c5316dce (diff)
sc: the type is not Data, but Date
Change-Id: I32105e1f40ddb0c206d62f30f66054b7dbe803d0 Reviewed-on: https://gerrit.libreoffice.org/74594 Reviewed-by: Julien Nabet <serval2412@yahoo.fr> Tested-by: Jenkins Reviewed-by: Tor Lillqvist <tml@collabora.com> Tested-by: Tor Lillqvist <tml@collabora.com>
-rw-r--r--sc/inc/conditio.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/inc/conditio.hxx b/sc/inc/conditio.hxx
index 49c05fbbb3c7..42448174ca52 100644
--- a/sc/inc/conditio.hxx
+++ b/sc/inc/conditio.hxx
@@ -280,7 +280,7 @@ inline std::basic_ostream<charT, traits> & operator <<(std::basic_ostream<charT,
stream << "Iconset";
break;
case ScFormatEntry::Type::Date:
- stream << "Data";
+ stream << "Date";
break;
default:
stream << "?(" << static_cast<int>(rType) << ")";