You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@openoffice.apache.org by bu...@apache.org on 2012/09/05 16:42:12 UTC

[Bug 120824] Save performance: Improve StyleSheet mapping

https://issues.apache.org/ooo/show_bug.cgi?id=120824

Armin Le Grand <Ar...@me.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|CONFIRMED                   |ACCEPTED

--- Comment #1 from Armin Le Grand <Ar...@me.com> ---
ALG: In XclExpXFBuffer the styles for export are held in a XclExpXFList (called
maXFList). The method FindXF is used to checl if a style already exists. To do
so, it iterates liinear over all existing styles. This is done often during
export.
To speed this up it would be better to hash this with the ItemSet as key and an
index in the list as value. This can be on demand (extending as the list
extends). Checking if/how this can be encapsulated.

-- 
You are receiving this mail because:
You are the assignee for the bug.