Age | Commit message (Collapse) | Author |
|
Change-Id: I33590e7907c593d821e2eafda0e04c76c8b99879
Reviewed-on: https://gerrit.libreoffice.org/3393
Reviewed-by: Thomas Arnhold <thomas@arnhold.org>
Tested-by: Thomas Arnhold <thomas@arnhold.org>
|
|
Change-Id: I7318a9f4f3410edf4dbe67bf08f31682fcb4edc7
|
|
Change-Id: I34167b80e9ac31b32639cd3be903ba9edbdfa41a
|
|
But this occasionally crashes.
Change-Id: I0a18d0e210639b43b89b966a54de541b9a43e329
|
|
This effectively reverts the code parts of
13e8f68e82713cae2d081a236b260bda12aafa23
"fix memory leak and add some documentation"
Change-Id: I66fa052f79185e1348c14e99954b04bf0a4622e5
|
|
Change-Id: I647b9e4de54fdcfadcf17ac7e161b245f3dea546
|
|
Change-Id: I4ee6eed94cdfd8a8a514a79a33a1ccb4ff586ce5
|
|
Change-Id: I1e3eddf9be2a75faabf0b0be91f30d7e8d43d3e4
|
|
Change-Id: I74427d1e0059808f04960c648b93245b06c20f7f
|
|
Change-Id: Ic8d56962411d87c5c6b33acccf1927d4e85ceaa9
|
|
Modules sal, salhelper, cppu, cppuhelper, codemaker (selectively) and odk
have kept them, in order not to break external API (the automatic using declaration
is LO-internal).
Change-Id: I588fc9e0c45b914f824f91c0376980621d730f09
|
|
Change-Id: Ia63b2a39df1c2aa76bb288e032b35d95bb0ff439
|
|
- Only generate the list after applying a new filter function.
- Append item directly to the filtered list if its allowed when appending
a new item to the thumbnailview.
Change-Id: I804533e2a1751abb0cbc3082093aef2cb9093fb0
|
|
Moved portions from module i18npool, all of former i18nisolang1 library
that now is i18nlangtag. Included are languagetag, isolang and mslangid.
This i18nlangtag code is now even used by module comphelper, so
disentangling i18npool and making this an own module was needed to not
create circular module dependencies.
Change-Id: Ib887c3d6dde667403fd22d382310ba5f1a9b0015
|
|
* only Get/SetCurrentTempURL were used, but only for compatibility reasons,
to remove old temporary directories (before 2001). Those should be gone
today.
* MailUIEnabled was false in the xcu file.
* SID_MAIL_SENDDOC* are handled some lines further.
Change-Id: I482719b0de9df0a77c2fef0bf25ae1fb68926375
Reviewed-on: https://gerrit.libreoffice.org/3180
Reviewed-by: Miklos Vajna <vmiklos@suse.cz>
Tested-by: Miklos Vajna <vmiklos@suse.cz>
Notes:
API CHANGE.
|
|
Change-Id: Ic134909f3e65bcb1aa440f60a156f293225d3edc
|
|
Change-Id: I1fd581c8ca44cfb48184d8a17e6077707f038bd4
Reviewed-on: https://gerrit.libreoffice.org/3148
Reviewed-by: Luboš Luňák <l.lunak@suse.cz>
Tested-by: Luboš Luňák <l.lunak@suse.cz>
|
|
I very much doubt anybody is using it. It has never been documented as far as
I can see for OpenOffice.org and even less for LibreOffice. I only found it
mentioned in the "StarOffice 6.0 Software Administration Guide".
Change-Id: I03f272427ef6717e3e3ff957f32ffe1f696d93c9
Reviewed-on: https://gerrit.libreoffice.org/3118
Reviewed-by: Michael Stahl <mstahl@redhat.com>
Tested-by: Michael Stahl <mstahl@redhat.com>
|
|
Change-Id: I8871b0c95874ceab755b3cb304a60c34981c649c
|
|
Change-Id: I0f193b9c17da5855fd515251543afc68b8885b9b
|
|
Change-Id: I81982af9a540c9966df8c0474b6527c5d08ed6f3
|
|
Change-Id: Id4170e500d92dc912087eac137f38d243c3c1372
|
|
Change-Id: Iaf238413b95ed3d09f58d7adb49da13da9d71887
|
|
Change-Id: I2bb16913f20fcc093acaec9de8b07d27a692056b
|
|
Change-Id: I965586748ab51ddb6face485e0db292c4c7b5274
|
|
Change-Id: I004b50118b1b261de4807660012b55eeecff41a3
|
|
Change-Id: Ie2acd2246694ce792f628a7057df5c30dac5db32
|
|
Change-Id: I2fe82b20e9b4a78abbbb3e8e587a5720054f845d
Reviewed-on: https://gerrit.libreoffice.org/3077
Reviewed-by: Bosdonnat Cedric <cedric.bosdonnat@free.fr>
Tested-by: Bosdonnat Cedric <cedric.bosdonnat@free.fr>
|
|
- Update all actions to use the new system.
Change-Id: I22da25a4bbba4604f5df42f440e6532076d39457
Reviewed-on: https://gerrit.libreoffice.org/3075
Reviewed-by: Bosdonnat Cedric <cedric.bosdonnat@free.fr>
Tested-by: Bosdonnat Cedric <cedric.bosdonnat@free.fr>
|
|
For multi-column sections in Writer, HTMLMODE_FRM_COLUMNS controlled
whether column settings for the section were exported to html or not.
This was disabled for Internet Explorer and enabled for other browsers.
The export was implemented using non-standard MULTICOL html element
and did not actually work in any modern browser (apparently only
some versions of Netscape have ever supported this). This patch
- exports the column count also using "column-count" CSS attribute
which is supported by latest versions of Opera and IE. Firefox and
Webkit based browsers would currently require -moz-column-count and
-webkit-column-count but I have not added these since the browsers
will likely stop requiring the prefix in the future anyway.
- removes HTMLMODE_FRM_COLUMNS conditional so that this export will
happen with all html compatibility options, including IE.
Remaining issue: Using the MULTICOL element (as opposed to DIV element)
confuses at least Opera so that it ignores all style attributes applied
on the element. But corresponding html import code in LibreOffice still
relies on MULTICOL. I will work on a separate patch to add support for
column-count CSS attribute to the import code and switch export to use
DIV instead.
Change-Id: I82a065fdda0e074fbfcd0007e6ff6e46185be3f5
Reviewed-on: https://gerrit.libreoffice.org/2950
Reviewed-by: Petr Mladek <pmladek@suse.cz>
Tested-by: Petr Mladek <pmladek@suse.cz>
|
|
Change-Id: Idc198beb6d759dbe3bad6ea58d896c1555b4cc0f
|
|
Pass -DLIBO_FEATURE_FOO to compiler for some elements in BUILD_TYPE.
BUILD_TYPE has at least two kinds of elements: Those that indicate
building a bundled copy of some 3rd-party library, and those that
indicate some specific feature of the LibreOffice platform or
build-time configuration choice. This is for the latter kind.
Change many of the checks for Android and/or iOS in the source code to
check LIBO_FEATURE_DESKTOP, LIBO_FEATURE_HELP or DISABLE_EXTENSIONS
instead, in cases where that is what is meant, not Android or iOS
specifically.
Change-Id: I2cd3f3bb99e953c7754dcea76a426f8f9d61e4db
|
|
(When I say documents, I mean spreadsheets. Only Calc has code for
this.)
Change-Id: I05fd19885633f9e250940678d33e2e4c82c31a9d
|
|
Change-Id: I9ee17e00f769ca16f566b1397d09b76a09273912
|
|
Refactor TemplateView class into TemplateAbstractView so we
only have one class that display template thumbnails and not
a separate for folders and another for files. This will let
us in the future be able to display file system hierarchies in
case of the remote repositories and simplify the view handing
logic.
Change-Id: Iafc246eeff4c50c12ac9ebec9fe95dcc84991e9e
|
|
Change-Id: I971390d084b08293b21fdc35beb74482a1560bb8
|
|
GUIStoreModel now correctly calls storeToUrl
instead of storeAsUrl, when saving a copy.
Dialog title is correctly set.
TODO:
- Write help
Change-Id: I4d7fc9ebc91c2129e8d8dcf9978c324bdddae129
|
|
Change-Id: I70924b4c9578122a1c5a5b6c8a67889d6d003a2e
|
|
LibreOffice is not a web browser.
This reloading stuff apparently never even worked for editable documents
anyway, see i#50881.
Change-Id: I720fbb72fd93232ad3e6fdfc65a05748bdf78108
|
|
Change-Id: I887b11646efb9a839da11cd3e20cdf7e532caf3e
|
|
Adds support for the UP, DOWN, LEFT, RIGHT and RETURN keys in the
thumbnails view but doesn't handle the modifiers yet. There are still
some problems with the focus and key input outside the top level
Change-Id: I5ba67583c835bcc00b075071411c0d6590a07f9a
|
|
Change-Id: Ib5ebcd928e77a115f4f62a50724656c33ae13c61
|
|
.. to Reference<XComponentContext>
mostly in the dbaccess module, but it also affected some other
modules.
Change-Id: I09b3f6fe7a9b33498b11d98b5521b5aeeb8882be
|
|
Change-Id: Iab2dd8ef71fd84e9d147d90e9cad46d69a8fe650
|
|
Change-Id: I3d0e2015e4c9f0ea6118fd92892022607fe4bde6
|
|
This wants to load about.png which doesn't exist anymore. "about.svg" does,
but is a rather abstract background image for the about dialog these days, so
use "flat_logo.svg" instead.
Which requires moving the svg loader out of cui into sfx2 for re-use.
Change-Id: I8654f0f93766556ef4ed4b87eff35b45d8189761
|
|
Change-Id: Ibff35bf24873a38c9a09d71fb3630a57e06f1a3c
|
|
We can now export a chart to odc when we are in chart edit mode from
Calc. I need to add support for it to Writer and Impress as well.
We can already open these files but copy&paste from the opened file
fails. The next step is then to add a new menu entry
Insert->Object->Chart from file
Change-Id: I14d1702e79517e7319a1929de2be5501d375885d
|
|
Change-Id: I1430da4ee9ff87b1fb549a43115aa8fe41c76343
|
|
Change-Id: I13f77790f26c972bd74dac08c0cb8fd77b049dbf
Reviewed-on: https://gerrit.libreoffice.org/2704
Reviewed-by: Fridrich Strba <fridrich@documentfoundation.org>
Tested-by: Fridrich Strba <fridrich@documentfoundation.org>
|