Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-03-20 | split macros to elide unneeded methods | Caolán McNamara | |
2012-03-19 | Fix a crash on launching the pivot layout dialog with duplicated data fields. | Kohei Yoshida | |
2012-03-19 | check for negative sheet number here too, fdo#47503 | Markus Mohrhard | |
2012-03-19 | Record sort order during the first sort by the value, and use it the 2nd time. | Kohei Yoshida | |
This avoids comparison of raw values (ScDPItemData) during the 2nd sort. Comparison of raw values can be expensive especially when the item sets mostly consist of string values. | |||
2012-03-19 | Mark also the copy constructor as SC_DLLPUBLIC, needed by the scfilt library | Tor Lillqvist | |
2012-03-19 | add missing forward declarations | Markus Mohrhard | |
2012-03-18 | Remove deprecated class DevChartConfigItem. | Rafael Dominguez | |
2012-03-18 | add test case for fdo#40426 | Markus Mohrhard | |
2012-03-18 | some sal_Bool to bool in transobj.cxx | Markus Mohrhard | |
2012-03-18 | also shrink used area for HTML in some cases, fdo#46230, n#677811 | Markus Mohrhard | |
Hopefully this will allow pasting to external applications with whole column/row selected while not affecting calc itself. | |||
2012-03-18 | disable two slow java based subsequenttests, fdo#45337 | Markus Mohrhard | |
These two tests are not well designed and need 5 and 10 minute just to check that we really return every row. This is not a good trade-off between test coverage and execution time. Enable them again with a better concept. | |||
2012-03-18 | add all imported properties to ScDBData, fdo#40426 | Markus Mohrhard | |
2012-03-18 | Fix Same expression on both sides of '==' | Julien Nabet | |
2012-03-18 | Reduce scope of nChar | Julien Nabet | |
2012-03-18 | match if-else properly (warnings are actually sometimes useful, huh) | Luboš Luňák | |
2012-03-17 | Fixed potential memory leak & UniString removal. | Kohei Yoshida | |
2012-03-16 | Added class description. | Kohei Yoshida | |
2012-03-16 | Use shared string pool to share string instances among string item values. | Kohei Yoshida | |
This brings down the reload time from 22 seconds to 4.3 seconds with my test document. This is what I've been looking for! | |||
2012-03-16 | More wording tweak. Members are sorted only in source dims (for now). | Kohei Yoshida | |
2012-03-16 | Better wording. | Kohei Yoshida | |
2012-03-16 | New unit test for testing pivot cache. | Kohei Yoshida | |
2012-03-16 | Prevent out-of-bound array access. | Kohei Yoshida | |
Source range may not start from column 0. | |||
2012-03-16 | We shouldn't skip empty columns, or else column index becomes out of sync. | Kohei Yoshida | |
2012-03-16 | Check all this in one place i.e. in ValidQuery(). | Kohei Yoshida | |
2012-03-16 | We don't ever compare equality of two caches. | Kohei Yoshida | |
That'd be super-expensive anyway. | |||
2012-03-16 | move excel related oox bits to sc | Noel Power | |
2012-03-16 | don't paste content if user cancels html import, fdo#47393 | Markus Mohrhard | |
2012-03-15 | No need to trim capacity any more; it's allocated to the exact size. | Kohei Yoshida | |
2012-03-15 | We don't need these extra order index array; items are already sorted. | Kohei Yoshida | |
This shaves off extra 5MB of memory with my test document. | |||
2012-03-15 | i#84393 Fix title field in header, footer | Szabolcs Dezsi | |
According to help Title should be the Title property of the document, not the file name without extension. If that property is missing, we fall back to file name without extension. | |||
2012-03-15 | update the relatice refs after the absolute refs, fdo#47285 | Markus Mohrhard | |
The algoithm for updating absolute refs needs to calculate the old position based on the information before any updates to the RefData | |||
2012-03-15 | ScNameMgrTable takes a reference, fdo#47307 | Markus Mohrhard | |
2012-03-15 | fix to update inputbar when setting a range for a formula fdo#46809 | Noel Power | |
2012-03-15 | Consolidated file-local functions. | Kohei Yoshida | |
2012-03-15 | Removed unused. | Kohei Yoshida | |
2012-03-15 | Use the same algorithm for database initialization. | Kohei Yoshida | |
2012-03-15 | Fixed memory leak. | Kohei Yoshida | |
2012-03-15 | Better algorithm to (re-)populate the cache. | Kohei Yoshida | |
With my test document, this brings the reload time down from 30 seconds to 19 seconds. I was expecting a much better outcome, but this is still better than the current. | |||
2012-03-15 | DataListType -> ItemsType. | Kohei Yoshida | |
2012-03-15 | Convert tools/table.hxx to std::map in ScEEParser class in SC module | Noel Grandin | |
2012-03-15 | add SCWARN_EXPORT_MAXTAB and SCWARN_EXPORT_MAXCOL | Maxime de Roucy | |
Create separate warnings when the maximum number of row, columns or sheets is reach in the export filter to xls forma. | |||
2012-03-15 | fdo#45671 split button for calc cell border color | Winfried Donkers | |
2012-03-15 | Horizontal scrollbar fix in Writer and Calc Print Preview | Szabolcs Dezsi | |
2012-03-15 | fdo#47311 don't crash when pasting into more than 1 sheet | David Tardon | |
2012-03-14 | Some proof-of-concept code for dpcache performance. | Kohei Yoshida | |
2012-03-14 | Fix the UNO API for creating a new group dimension. | Kohei Yoshida | |
2012-03-14 | We need to manually clear the table data in presence of group fields. | Kohei Yoshida | |
There was a hack that did this in ScDPObject, which I removed. But we still need to do the same except this time it's outside of ScDPObject. | |||
2012-03-14 | add some more torture tests | Caolán McNamara | |
2012-03-14 | Enable -Wnon-virtual-dtor for GCC 4.6 | Stephan Bergmann | |
...which has the necessary features to support it. Change a lot of classes to either contain a protected non-virtual dtor (which is backwards compatible, so even works for cppumaker-generated UNO headers) or a public virtual one. cppuhelper/propertysetmixin.hxx still needs to disable the warning, as the relevant class has a non-virtual dtor but friends, which would still cause GCC to warn. Includes a patch for libcmis, intended to be upstreamed. | |||
2012-03-14 | When changing grouping in one pivot table, update all linked tables. | Kohei Yoshida | |
We need to do this now because we now store the group field data directly in the pivot cache, which is shared by all referencing tables. Also, actions involving modification of the cache is not undoable, and making it undoable would significantly increase Calc's runtime memory footprint. So, no way. |