summaryrefslogtreecommitdiff
path: root/sc
AgeCommit message (Collapse)Author
2012-03-10gbuild: get rid of realpath in gb_Foo_set_includeMatúš Kukan
2012-03-10Fix Possible null pointer dereferenceJulien Nabet
2012-03-10Fix Prefer prefix ++/-- operators for non-primitive typesJulien Nabet
2012-03-10Fix : statement following break will never be executedJulien Nabet
2012-03-10take explicit number format before implicit number format, fdo#47084Markus Mohrhard
Follow-up to fdo#43467
2012-03-09vector and rtl::Reference over manual ref-counting.Kohei Yoshida
2012-03-09These don't have to be virtual.Kohei Yoshida
2012-03-09Keep vector as vector.Kohei Yoshida
2012-03-09Store only one number format per field.Kohei Yoshida
2012-03-09Some header cleanup.Kohei Yoshida
2012-03-09Use std::vector instead of boost::ptr_vector for ScDPItemData.Kohei Yoshida
It's a small-size object, so using std::vector is slightly more efficient.
2012-03-09Use flat_segment_tree to store the empty row flags.Kohei Yoshida
2012-03-09IsValid() is superfluous.Kohei Yoshida
2012-03-09dptablecache.* to dpcache.*Kohei Yoshida
2012-03-09Fix infinite looping memory devouring on refreshing table with date grouping.Kohei Yoshida
It so happens that both group info and date info can be enabled, in which case the date info takes precedence.
2012-03-09Use the common method over the local clone.Kohei Yoshida
2012-03-09Bit more organized & Error item has string too.Kohei Yoshida
2012-03-09use the target document not the source documentMarkus Mohrhard
2012-03-09Correct equality check & disable Dump() for normal build.Kohei Yoshida
2012-03-09Apparently nobody uses Hash() anymore.Kohei Yoshida
2012-03-09-Werror={deprecated-declarations,sign-compare,unused-parameter}Stephan Bergmann
2012-03-09Even more cleanup and fixing.Kohei Yoshida
2012-03-09Cleaned up code.Kohei Yoshida
2012-03-09Populate group dimensions directly to the cache.Kohei Yoshida
This is to avoid populating them twice in case the same cache is referenced by multiple pivot tables.
2012-03-09Added hook to create group field data at cache creation time.Kohei Yoshida
This is to avoid group data to be added multiple times in case of multiple pivot tables referencing the same pivot cache.
2012-03-09Get normal grouping to work again.Kohei Yoshida
2012-03-09Some adjustments.Kohei Yoshida
2012-03-09Properly display grouped range values for range-based grouping.Kohei Yoshida
2012-03-09These functions are no longer used.Kohei Yoshida
2012-03-09Get number-grouping to work again.Kohei Yoshida
Though I stil need to fix the sorting issue, which occurs because I use string items to represent the range items.
2012-03-09More scope reduction.Kohei Yoshida
2012-03-09We can't deal with "date" field mixed with ordinary strings.Kohei Yoshida
And any attempt to handle this would end in disaster anyway. Just skip them.
2012-03-09Scope reduction.Kohei Yoshida
2012-03-09Bool-ness.Kohei Yoshida
2012-03-09Only load members of the clicked field, not of all fields.Kohei Yoshida
This can mean the difference of 10 seconds vs 0.01 second depending on the type of data.
2012-03-09Fixed a bug on sorting members.Kohei Yoshida
2012-03-09Removed most of my debug statements.Kohei Yoshida
2012-03-09Display special first/last date names correctly.Kohei Yoshida
2012-03-09More on correctly formatting grouped values.Kohei Yoshida
2012-03-09Make sure to clear group field data when reloading the cache.Kohei Yoshida
2012-03-09We can't take a reference here since the value will change after removal.Kohei Yoshida
2012-03-09String and boolean cleanups.Kohei Yoshida
2012-03-09No need to create a copy just to refresh pivot table.Kohei Yoshida
2012-03-09Scope reduction.Kohei Yoshida
2012-03-09Fixed TestInclude for reverse-sorted dimensions.Kohei Yoshida
2012-03-09Display date group values correctly.Kohei Yoshida
2012-03-09Fix the result hierarchy construction. Still lots of places remain broken.Kohei Yoshida
2012-03-09At least pass all unit tests.Kohei Yoshida
2012-03-09Custom copy constructor and assignment operator to fix segfault.Kohei Yoshida
2012-03-09Massive rework to reduce the size of ScDPItemData.Kohei Yoshida
Currently lots of things are broken.