aboutsummaryrefslogtreecommitdiff
path: root/source/ve/scaddins
diff options
context:
space:
mode:
authorAndras Timar <atimar@suse.com>2013-01-06 17:18:06 +0100
committerAndras Timar <atimar@suse.com>2013-01-06 17:39:09 +0100
commite5f69f7b241f21f0b85f7a62ccff9de841875828 (patch)
treecaba82c98457334388051db4485d3c9d8834fd07 /source/ve/scaddins
parentc6cfd71c3d302bdb0999888f9c867d70acb40708 (diff)
update translations for LibreOffice 4.0 rc1
Change-Id: I85ba7031ebee3b3b0108218e97093fab1e9d84a3
Diffstat (limited to 'source/ve/scaddins')
-rw-r--r--source/ve/scaddins/source/analysis.po2
-rw-r--r--source/ve/scaddins/source/datefunc.po2
-rw-r--r--source/ve/scaddins/source/pricing.po2
3 files changed, 3 insertions, 3 deletions
diff --git a/source/ve/scaddins/source/analysis.po b/source/ve/scaddins/source/analysis.po
index 2e781c136fd..15ac4a08242 100644
--- a/source/ve/scaddins/source/analysis.po
+++ b/source/ve/scaddins/source/analysis.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-10 11:45+0100\n"
+"POT-Creation-Date: 2012-12-26 11:14+0100\n"
"PO-Revision-Date: 2012-07-14 10:56+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
diff --git a/source/ve/scaddins/source/datefunc.po b/source/ve/scaddins/source/datefunc.po
index 40ceca306b0..61c7eb6b3d2 100644
--- a/source/ve/scaddins/source/datefunc.po
+++ b/source/ve/scaddins/source/datefunc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-10 11:45+0100\n"
+"POT-Creation-Date: 2012-12-26 11:14+0100\n"
"PO-Revision-Date: 2011-04-12 01:25+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
diff --git a/source/ve/scaddins/source/pricing.po b/source/ve/scaddins/source/pricing.po
index 414b582585f..6ecabe070cc 100644
--- a/source/ve/scaddins/source/pricing.po
+++ b/source/ve/scaddins/source/pricing.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-10 11:45+0100\n"
+"POT-Creation-Date: 2012-12-26 11:14+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
'libreoffice-4-2-1'>libreoffice-4-2-1 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/sc/inc/SparklineCell.hxx
AgeCommit message (Collapse)Author
2022-08-07clang-tidy modernize-pass-by-value in scNoel Grandin
Change-Id: Ia7ff651d1cbc119b36a9f8052594d03650988f59 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/137848 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2022-05-26WIP: dunno about "Hodler"Andrea Gelmini
Change-Id: I9fbee006237ccb70e31109023cf46b21aec325d6 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134668 Tested-by: Julien Nabet <serval2412@yahoo.fr> Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
2022-05-20Document sparkline related classes, functions and structsTomaž Vajngerl
No functional change. Change-Id: I822c6a9d270dc582aaae2900f833843a0d6f8ddc Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134651 Tested-by: Jenkins Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
2022-04-03sc: make getters const in SparklineCell and Sparkline classesTomaž Vajngerl
Change-Id: Ia0bc1d4bd7da834da3640f34bfdb744dd2ddeba2 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/132471 Tested-by: Jenkins Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
2022-03-29sc: refactor sparkline struture to store a list of sparklinesTomaž Vajngerl
We need to access a list of sparklines and sparkline groups for a sheet. To preven going through all the columns of a sheet, we need to store all the created sparklines in a list. For this it is necessary to change the model structrue a bit. A cell now has a container that stores a shared_ptr to the sparkline instead of storing the sparkline directly. With this we can store a list of weak_ptr to the sparklines in a list (vector), which can be accessed at any time and is quite fast. This is needed by the OOXML export. Change-Id: Iaca0a41e20912775f072ea6e8cab9c44367d6f30 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/131919 Tested-by: Tomaž Vajngerl <quikee@gmail.com> Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>