Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-09-06 | Improve performance of large Excel documents wrt cell style import. | Kohei Yoshida | |
This change improves import performance of Excel documents based on the following changes. 1) Pool styles only once per call. This removes SfxItemPoolCache instantiation and destruction which is quite expensive. This alone cuts import almost by half with large documents with lots of styles applied. 2) Skip removal of direct formats when setting style. The old code was iterating through all attribute regions in order to try to remove overlapping format attributes when applying a style. But that's strictly not necessary (and bad for performance) during import. This also removes the need to re-apply the direct formats right afterward. 3) Avoid creating a duplicate ScPatternAttr instance per XF. There is simply no need to create a clone of the style only to put it into the styles pool and get discarded. This saves additional few seconds. | |||
2011-09-06 | initital work for a unit test for calc's basic features | Markus Mohrhard | |
the SC_DLLPUBLIC changes in document.hxx are only necessary until we can link statically against sc | |||
2011-09-06 | related #i114504: external reference manager part | Markus Mohrhard | |
2011-09-06 | related #i114504: don't assume external references are always file urls | Niklas Nebel | |
2011-09-06 | merge area does not need to be increased if a shadow is attached | Markus Mohrhard | |
2011-09-05 | initial work for a merged cell unit test | Markus Mohrhard | |
TODO: add a undo/redo test and debug why ScDocFunc::InsertCells does not expand the merged area | |||
2011-09-05 | test range names in import test | Markus Mohrhard | |
2011-09-05 | "thereof" should be translated to modern English | Lior Kaplan | |
2011-09-05 | consistent includes | Caolán McNamara | |
2011-09-05 | add officecfg dependency, and (hopefully) a fix for windows URLs | Michael Meeks | |
2011-09-05 | no real need to use pointers here | Caolán McNamara | |
2011-09-05 | access oox vbaproject import directly | Noel Power | |
2011-09-04 | fixed various crashes due to newly introduced ScRangeName::maIndexToData | Eike Rathke | |
* The newly introduced ScRangeName::maIndexToData needs to take into account that boost::ptr_set clones and deletes elements, hence each collection needs its own maIndexToData setup in copy-ctor. * Also fixed ScRangeName::erase() where a wrong index element was set to NULL. | |||
2011-09-02 | Speed up range name lookup by index. | Kohei Yoshida | |
This should speed up formula calculations considerably during xls import since shared formulas are also stored in ScRangeName and they are looked up by index. (bnc#715104) | |||
2011-09-02 | add missing components, use new configmgr path, and enable ODS test | Michael Meeks | |
2011-09-02 | enable calc's ODS file filter unit test | Markus Mohrhard | |
2011-09-01 | remove obsolete, and apparently unused GLOBALOVERFLOW* defines | Michael Meeks | |
2011-09-01 | fix warnings | Gabor Jenei | |
2011-08-31 | Switch to for loop and reduce scoping level. | Kohei Yoshida | |
2011-08-31 | We can remove this scope too. | Kohei Yoshida | |
2011-08-31 | Removed unnecessary scoping. | Kohei Yoshida | |
The if condition is true, the method simply returns. There is no need to have this else scope which would increase the indent level for no good reason. | |||
2011-08-30 | Adjust the dialog size to make sure the bottom text is visible. | Kohei Yoshida | |
This ensures that the bottom text "Drag the fields from ..." is visible on all platforms. Previously this text overlapped with the data and row field windows on Windows XP. | |||
2011-08-30 | WaE: debug=t | Caolán McNamara | |
2011-08-30 | String / bool conversions for ScTableLink. | Kohei Yoshida | |
2011-08-30 | More string conversion around ScDocumentLoader. | Kohei Yoshida | |
2011-08-29 | More string & bool conversion. | Kohei Yoshida | |
2011-08-29 | sal_Bool to bool. | Kohei Yoshida | |
2011-08-29 | Unused data member. | Kohei Yoshida | |
2011-08-29 | String to rtl::OUString. | Kohei Yoshida | |
2011-08-29 | Some cleanups & removed lazy macros. | Kohei Yoshida | |
2011-08-29 | More on String to rtl::OUString. | Kohei Yoshida | |
2011-08-29 | String to rtl::OUString. | Kohei Yoshida | |
2011-08-29 | String to rtl::OUString, and I forgot to commit the new headers. | Kohei Yoshida | |
2011-08-29 | Hide ScDragData and ScClipData from scmod.hxx, clean up ScModule a bit. | Kohei Yoshida | |
2011-08-29 | sal_Bool to bool. | Kohei Yoshida | |
2011-08-29 | sal_Bool to bool. | Kohei Yoshida | |
2011-08-29 | String to rtl::OUString. | Kohei Yoshida | |
2011-08-29 | Rename class XColorTable to XColorList | Joseph Powers | |
The class is now based on XPropertyList instead of XPropertyTable and all of the other classed based on XPropertyList are named X..List. | |||
2011-08-29 | fix typos and includes | Caolán McNamara | |
2011-08-29 | merge together 5 or ascii isalpha/isalnum/isdigit implementations | Caolán McNamara | |
2011-08-29 | tweak for change | Caolán McNamara | |
2011-08-28 | some additional sal_Bool -> bool in sc/source/filter/xml | Markus Mohrhard | |
2011-08-28 | some more sal_Bool -> bool in sc/source/filter/xml | Markus Mohrhard | |
2011-08-28 | sal_Bool->bool in xmlcelli.[ch]xx | Markus Mohrhard | |
2011-08-28 | some initial refactoring in xmlcelli.cxx | Markus Mohrhard | |
2011-08-27 | Extracted a common code block. | Kohei Yoshida | |
2011-08-27 | need argument by reference here | Markus Mohrhard | |
2011-08-26 | I forgot to increment the DB collection position. | Kohei Yoshida | |
This fixes infinite loops during pivot table layout dialog initialization. | |||
2011-08-27 | don't use macro here | Markus Mohrhard | |
2011-08-26 | String to rtl::OUString. | Kohei Yoshida | |