summaryrefslogtreecommitdiff
path: root/sc/source
AgeCommit message (Collapse)Author
2012-03-24ScDPDateGroupHelper class is no more.Kohei Yoshida
2012-03-23More on avoiding use of date helper.Kohei Yoshida
2012-03-23Let's just centrally reload group data in DataPilotUpdate()...Kohei Yoshida
It's a no-op when there is no group dimensions anyways.
2012-03-23We don't need date helper in FillGroupValues().Kohei Yoshida
2012-03-23Store the group type (aka date part) with the cache, and use that.Kohei Yoshida
With this, we can phase out the "DateHelper" class...
2012-03-23(Hopefully) fixed the table reload bug coming from the pivot layout dialog.Kohei Yoshida
2012-03-23Added dump methods to various classes to make debugging easier.Kohei Yoshida
And a little code cleanup here and there...
2012-03-23A little clean up.Kohei Yoshida
2012-03-23Bool-ness.Kohei Yoshida
2012-03-23Dump item values too.Kohei Yoshida
2012-03-23Some misc changes & some dumping facility for pivot table for debugging.Kohei Yoshida
2012-03-23No need to check for null table twice.Kohei Yoshida
2012-03-23.xls files don't need executable bitsMichael Stahl
2012-03-23SvtAccessibilityOptions::GetIsForBorders is no longer usedCaolán McNamara
2012-03-23Localize the group prefix for pivot table defult group names.Kohei Yoshida
2012-03-23increase nCol before next iteratation to prevent loop, fdo#46220Markus Mohrhard
2012-03-22More bug fixes related to grouped dimension handling.Kohei Yoshida
2012-03-22Get correct string value for group item value.Kohei Yoshida
Unlike the old version, the new version no longer stores string value for non-string items. We need to call GetFormattedString() for that.
2012-03-22When updating pivot table with groups, we need to clear the table data.Kohei Yoshida
2012-03-23cache calls to mdds:mixed_type_matrix::size, related fdo#47299Markus Mohrhard
2012-03-22removed duplicate includes in scTakeshi Abe
2012-03-22ChartTokenMap can contain null pointersStephan Bergmann
db3786ee3aa0d8911042c9bbcea02cf36d96dfa1 caused chart2_unoapi test to crash
2012-03-22Convert tools/table.hxx to std::map in Chart2PositionMap classNoel Grandin
2012-03-22remove unnecessary use of local variable and auto_ptrNoel Grandin
2012-03-22if/else branches contain same codeNoel Grandin
2012-03-22restructure insert code as a precursor to further simplificationNoel Grandin
2012-03-22simplify code - remove unnecessary and complicated allocationNoel Grandin
2012-03-22Convert tools/table.hxx to std::map in class ScHTMLLayoutParserNoel Grandin
2012-03-22Convert tools/table.hxx usage to std::map in ScEEImport classNoel Grandin
2012-03-22restructure the code a bit moreMarkus Mohrhard
2012-03-22prevent call to virtual method in destructor, fdo#47589Markus Mohrhard
2012-03-21Make sure one base class does not use another one after destructionStephan Bergmann
The original code lead to invoking a pure virtual function in Calc when doing Ctrl-F2, ESC.
2012-03-21Export to xls correct item values for grouped fields.Kohei Yoshida
2012-03-20callcatcher: update listCaolán McNamara
2012-03-20remove unused code (oox, sc)Petr Vorel
2012-03-20remove unused code (oox, sc)Petr Vorel
2012-03-20split macros to elide unneeded methodsCaolán McNamara
2012-03-19Fix a crash on launching the pivot layout dialog with duplicated data fields.Kohei Yoshida
2012-03-19check for negative sheet number here too, fdo#47503Markus Mohrhard
2012-03-19Record 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-18Remove deprecated class DevChartConfigItem.Rafael Dominguez
2012-03-18some sal_Bool to bool in transobj.cxxMarkus Mohrhard
2012-03-18also shrink used area for HTML in some cases, fdo#46230, n#677811Markus Mohrhard
Hopefully this will allow pasting to external applications with whole column/row selected while not affecting calc itself.
2012-03-18add all imported properties to ScDBData, fdo#40426Markus Mohrhard
2012-03-18Fix Same expression on both sides of '=='Julien Nabet
2012-03-18Reduce scope of nCharJulien Nabet
2012-03-18match if-else properly (warnings are actually sometimes useful, huh)Luboš Luňák
2012-03-17Fixed potential memory leak & UniString removal.Kohei Yoshida
2012-03-16Use 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-16New unit test for testing pivot cache.Kohei Yoshida