Files
libreoffice/svtools
Julien Nabet 40e22f1e1b tdf#120158: fix ImplGetParameterString for typename
since type name might also contain unacceptable characters,
encode all of them

See comments 8/9/10 and 11 (bt here) of bugtracker

+ add SAL_WARN in catch (which would have avoided me to waste a lot of
time chasing the root cause)

Change-Id: If8555bba8cda011218206621216e0405615229eb
Reviewed-on: https://gerrit.libreoffice.org/61601
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
2018-10-10 22:57:23 +02:00
..
2018-10-05 17:12:11 +02:00
2018-10-04 15:03:06 +02:00
2018-10-05 17:12:11 +02:00
2018-09-05 13:36:35 +02:00

Tools on top of VCL. Common dialogs, file and print dialogs, wizards, vcl filters, lots of helper code.


== Image swapping ==

LO has two kind of swapout mechanisms:

1) Size based auto swapping: when the size of all graphic objects reaches a configurable limit (20 MB by default)
then some of the graphics are saved to the local file system and freed in the memory.
Configure: Tools -> Options -> Memory -> GraphicsCache -> Use for LibreOffice

2) Time based auto swapping: after an image is swapped in / loaded a timer starts and when the timer (1 min by default)
has a time out this image is swapped out ( sometimes this time out is ignored when the image is in use ).
Configure: Tools -> Options -> Memory -> GraphicsCache -> Remove from memory after

Both swapping are done by GraphicObject and GraphicManager.