/* -*- 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/. * * This file incorporates work covered by the following license notice: * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright * ownership. The ASF licenses this file to you under the Apache * License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ #include "sal/main.h" #include SAL_IMPLEMENT_MAIN() { fprintf(stderr, "success!\n"); return 0; } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ uthor> Andrea Gelmini andrea.gelmini@gelma.net 2022-05-20T09:13:23+00:00 b9070eedb3b0296a04fcb53aad62f98bb528476b 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>
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>
Document sparkline related classes, functions and structs 2022-05-20T07:02:55+00:00 Tomaž Vajngerl tomaz.vajngerl@collabora.co.uk 2022-05-20T05:56:45+00:00 0874486b348f1477d59e161a4d73c5cb56e238f9 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>
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>
sc: make getters const in SparklineCell and Sparkline classes 2022-04-03T14:08:58+00:00 Tomaž Vajngerl tomaz.vajngerl@collabora.co.uk 2022-03-19T01:39:20+00:00 05032132786b8dfc5cfda6b782acf85cb4d39be9 Change-Id: Ia0bc1d4bd7da834da3640f34bfdb744dd2ddeba2 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/132471 Tested-by: Jenkins Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
Change-Id: Ia0bc1d4bd7da834da3640f34bfdb744dd2ddeba2
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/132471
Tested-by: Jenkins
Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
sc: refactor sparkline struture to store a list of sparklines 2022-03-29T02:48:23+00:00 Tomaž Vajngerl tomaz.vajngerl@collabora.co.uk 2022-03-02T08:44:08+00:00 4e37bb2e7b7c84457e2f44e3a9a0d47b96a603af 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>
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>