summaryrefslogtreecommitdiffstats
path: root/sc
Commit message (Collapse)AuthorAgeFilesLines
* gbuild: get rid of realpath in gb_Foo_set_includeMatúš Kukan2012-03-1019-52/+52
|
* Fix Possible null pointer dereferenceJulien Nabet2012-03-101-2/+2
|
* Fix Prefer prefix ++/-- operators for non-primitive typesJulien Nabet2012-03-101-1/+1
|
* Fix : statement following break will never be executedJulien Nabet2012-03-101-2/+0
|
* take explicit number format before implicit number format, fdo#47084Markus Mohrhard2012-03-101-1/+1
| | | | Follow-up to fdo#43467
* vector and rtl::Reference over manual ref-counting.Kohei Yoshida2012-03-092-32/+19
|
* These don't have to be virtual.Kohei Yoshida2012-03-091-2/+2
|
* Keep vector as vector.Kohei Yoshida2012-03-093-16/+17
|
* Store only one number format per field.Kohei Yoshida2012-03-092-13/+7
|
* Some header cleanup.Kohei Yoshida2012-03-094-8/+13
|
* Use std::vector instead of boost::ptr_vector for ScDPItemData.Kohei Yoshida2012-03-092-45/+51
| | | | | It's a small-size object, so using std::vector is slightly more efficient.
* Use flat_segment_tree to store the empty row flags.Kohei Yoshida2012-03-092-10/+15
|
* IsValid() is superfluous.Kohei Yoshida2012-03-092-10/+0
|
* dptablecache.* to dpcache.*Kohei Yoshida2012-03-095-4/+4
|
* Fix infinite looping memory devouring on refreshing table with date grouping.Kohei Yoshida2012-03-091-7/+7
| | | | | It so happens that both group info and date info can be enabled, in which case the date info takes precedence.
* Use the common method over the local clone.Kohei Yoshida2012-03-091-75/+2
|
* Bit more organized & Error item has string too.Kohei Yoshida2012-03-091-9/+14
|
* use the target document not the source documentMarkus Mohrhard2012-03-091-1/+1
|
* Correct equality check & disable Dump() for normal build.Kohei Yoshida2012-03-092-3/+12
|
* Apparently nobody uses Hash() anymore.Kohei Yoshida2012-03-092-16/+0
|
* -Werror={deprecated-declarations,sign-compare,unused-parameter}Stephan Bergmann2012-03-094-11/+10
|
* Even more cleanup and fixing.Kohei Yoshida2012-03-094-61/+29
|
* Cleaned up code.Kohei Yoshida2012-03-095-184/+17
|
* Populate group dimensions directly to the cache.Kohei Yoshida2012-03-099-247/+449
| | | | | This is to avoid populating them twice in case the same cache is referenced by multiple pivot tables.
* Added hook to create group field data at cache creation time.Kohei Yoshida2012-03-0911-28/+89
| | | | | This is to avoid group data to be added multiple times in case of multiple pivot tables referencing the same pivot cache.
* Get normal grouping to work again.Kohei Yoshida2012-03-092-48/+20
|
* Some adjustments.Kohei Yoshida2012-03-093-39/+30
|
* Properly display grouped range values for range-based grouping.Kohei Yoshida2012-03-0910-197/+264
|
* These functions are no longer used.Kohei Yoshida2012-03-091-29/+1
|
* Get number-grouping to work again.Kohei Yoshida2012-03-093-63/+68
| | | | | Though I stil need to fix the sorting issue, which occurs because I use string items to represent the range items.
* More scope reduction.Kohei Yoshida2012-03-091-84/+85
|
* We can't deal with "date" field mixed with ordinary strings.Kohei Yoshida2012-03-091-6/+1
| | | | | And any attempt to handle this would end in disaster anyway. Just skip them.
* Scope reduction.Kohei Yoshida2012-03-091-88/+87
|
* Bool-ness.Kohei Yoshida2012-03-091-1/+1
|
* Only load members of the clicked field, not of all fields.Kohei Yoshida2012-03-095-67/+106
| | | | | This can mean the difference of 10 seconds vs 0.01 second depending on the type of data.
* Fixed a bug on sorting members.Kohei Yoshida2012-03-091-3/+3
|
* Removed most of my debug statements.Kohei Yoshida2012-03-094-112/+5
|
* Display special first/last date names correctly.Kohei Yoshida2012-03-0916-92/+206
|
* More on correctly formatting grouped values.Kohei Yoshida2012-03-097-20/+40
|
* Make sure to clear group field data when reloading the cache.Kohei Yoshida2012-03-092-10/+29
|
* We can't take a reference here since the value will change after removal.Kohei Yoshida2012-03-091-1/+1
|
* String and boolean cleanups.Kohei Yoshida2012-03-091-8/+10
|
* No need to create a copy just to refresh pivot table.Kohei Yoshida2012-03-091-16/+8
|
* Scope reduction.Kohei Yoshida2012-03-091-316/+316
|
* Fixed TestInclude for reverse-sorted dimensions.Kohei Yoshida2012-03-093-30/+29
|
* Display date group values correctly.Kohei Yoshida2012-03-095-77/+48
|
* Fix the result hierarchy construction. Still lots of places remain broken.Kohei Yoshida2012-03-097-48/+137
|
* At least pass all unit tests.Kohei Yoshida2012-03-096-56/+53
|
* Custom copy constructor and assignment operator to fix segfault.Kohei Yoshida2012-03-092-1/+53
|
* Massive rework to reduce the size of ScDPItemData.Kohei Yoshida2012-03-0916-337/+830
| | | | Currently lots of things are broken.