Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2011-09-07 | don't extend the merged area by one for shadows | Markus Mohrhard | 4 | -6/+6 | |
Signed-off-by: Eike Rathke <erack@erack.de> | |||||
2011-09-06 | crash when modifing a named range | Eike Rathke | 1 | -0/+7 | |
Signed-off-by: Markus Mohrhard <markus.mohrhard@googlemail.com> | |||||
2011-09-06 | Speed up range name lookup by index. | Kohei Yoshida | 1 | -0/+9 | |
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) Signed-off-by: Eike Rathke <erack@erack.de> | |||||
2011-08-30 | use boost::intrusive_ptr::get() instead of operator->() | Eike Rathke | 1 | -1/+1 | |
Old intrusive pointer in operator->() simply returned a NULL pointer if so, boost::intrusive_ptr asserts on that. If explicitly used to obtain the pointer use get() instead. Signed-off-by: Kohei Yoshida <kohei.yoshida@suse.com> | |||||
2011-08-10 | Correctly import from Excel charts with multiple ranges. | Kohei Yoshida | 1 | -1/+1 | |
This was "fixed" in i#107275, but the fix only worked in locales where the range/argument separator was ';' (e.g. German locale). This is the correct fix that works in all locales regardless of the separator. Signed-off-by: Noel Power <noel.power@novell.com> | |||||
2011-07-19 | fix for fdo#39333: database ranges don't work in formulas | Markus Mohrhard | 1 | -1/+1 | |
Signed-off-by: Kohei Yoshida <kyoshida@novell.com> | |||||
2011-07-15 | fdo#37767: Fix broken refresh() from UNO API (and Basic). | Kohei Yoshida | 1 | -0/+2 | |
We now need to clear the cache before running DataPilotUpdate() in order to re-populate the cache from the source data. Signed-off-by: Markus Mohrhard <markus.mohrhard@googlemail.com> | |||||
2011-05-20 | Let's not change the signature of UNO call & prefer static_cast. | Kohei Yoshida | 1 | -1/+1 | |
2011-05-13 | Properly initialize and copy fVal | Kohei Yoshida | 1 | -20/+11 | |
This fixes the empty value check during unit test for the debug build on (32-bit) Windows. Signed-off-by: Tor Lillqvist <tlillqvist@novell.com> | |||||
2011-05-09 | use sheet local db data in ScVbaRange::Autofilter | Markus Mohrhard | 1 | -0/+1 | |
Signed-off-by: Kohei Yoshida <kyoshida@novell.com> | |||||
2011-05-09 | add implementation for new uno interface XUnnamedDatabaseRange | Markus Mohrhard | 1 | -0/+30 | |
Signed-off-by: Kohei Yoshida <kyoshida@novell.com> | |||||
2011-05-06 | Explicitly specify less function object for map, to get it to build with MSVC. | Kohei Yoshida | 1 | -1/+6 | |
2011-05-03 | fdo#36051: Eliminated the hang due to removal of autofill undo object. | Kohei Yoshida | 3 | -5/+0 | |
An artifact of the old code, which appears to do nothing meaningful today was performing an incredibly slow operation upon destruction of the autofill undo object. Removed it, and also removed several other methods and data members that were used only in that removed code. | |||||
2011-05-03 | fdo#36771: Treat filter by "filter" and filter by "page" separate. | Kohei Yoshida | 1 | -3/+9 | |
The new datapilot cache implementation mixed these two up. I guess it's best to have two separate flags for these. | |||||
2011-05-02 | Let's not friend a class just because of one private method. | Kohei Yoshida | 1 | -2/+1 | |
2011-05-02 | Pass const reference. | Kohei Yoshida | 1 | -2/+2 | |
2011-04-29 | Removed unnecessary virtual-ness from the destructor. | Kohei Yoshida | 1 | -1/+1 | |
2011-04-29 | A bit of cleanups & annotation of data members. | Kohei Yoshida | 1 | -7/+28 | |
I'm trying to understand what ScDPCache does exactly. | |||||
2011-04-29 | Manage data caches for named range data source separately. | Kohei Yoshida | 1 | -0/+16 | |
Without this, updating the named range and refreshing would fail to remove the old cache, which is no longer referenced. Very bad for memory footprint. | |||||
2011-04-28 | Centrally manage cached grid data for data pilot tables. | Kohei Yoshida | 6 | -18/+65 | |
This prevents cached data from getting re-generated everytime ScDPObject gets copied, which happens quite often. Without this, the performance of datapilot would really really suffer. | |||||
2011-04-26 | killed sal_Bool and tabs. | Kohei Yoshida | 1 | -5/+5 | |
2011-04-26 | make excel binary import use anonymous db data | Markus Mohrhard | 1 | -1/+1 | |
2011-04-26 | make VbaWorksheet Autofilter work with sheet local DBData | Markus Mohrhard | 1 | -2/+2 | |
2011-04-19 | fdo#33341: Copy print ranges when copying sheet. | Kohei Yoshida | 1 | -0/+2 | |
2011-04-16 | fdo#36124: Fix relative/absolute toggling in R1C1 mode. | Kohei Yoshida | 1 | -3/+2 | |
2011-04-13 | Convert OLE links from XLS doc into external ranges on import. | Kohei Yoshida | 1 | -1/+1 | |
Linked cell ranges that are OLE links to other Excel documents were previously ignored on import. Let's import them but convert them into external references which are more robust than OLE links. | |||||
2011-04-13 | Silly indentation errors, remove friend statement, bool over sal_Bool. | Kohei Yoshida | 2 | -2/+2 | |
2011-04-12 | fdo#35345: Don't overwrite hidden cells in drag-fill operation | Katarina Machalkova | 3 | -0/+5 | |
Also i#89232. Extracting relevant parts from 'calc66' CWS | |||||
2011-04-01 | Extend data area for standard and special filters as well. | Kohei Yoshida | 1 | -0/+2 | |
2011-04-01 | Removed the dynamic row bits from the db range. It was a hack. | Kohei Yoshida | 3 | -11/+4 | |
This concept was there before the Hamburg added their own mechanism to allow dynamic expansion of db ranges. There is no need to have two of them, or it would cause weird problems. | |||||
2011-04-01 | Prefer bool over sal_Bool in ScDBData. | Kohei Yoshida | 1 | -51/+50 | |
2011-04-01 | Added container to store global anonymous db ranges. | Kohei Yoshida | 1 | -8/+17 | |
This is needed to support multiple subtotal ranges. | |||||
2011-04-01 | Moved up the user index data member. | Kohei Yoshida | 1 | -1/+1 | |
2011-04-01 | Cleaned up ScSortParam. | Kohei Yoshida | 1 | -26/+25 | |
Tabs and sal_Bool madness. | |||||
2011-04-01 | First cut on exporting sort parameters. | Kohei Yoshida | 1 | -1/+1 | |
2011-04-01 | Initial cut on trying to import the filtering properties of anonymous db. | Kohei Yoshida | 1 | -0/+4 | |
Still not quite working right. Something must be broken. | |||||
2011-04-01 | First cut on getting ODS import/export of sheet-local anonymous ranges. | Kohei Yoshida | 1 | -1/+1 | |
The punch lines is that we don't use UNO API to handle sheet-local anonymous ranges during ODS import and export. Eventually we should import the named database ranges using the internal API too, but for now we keep the current code (that uses the UNO API) for those. | |||||
2011-04-01 | We need to delete the old instance before setting a new one. | Kohei Yoshida | 1 | -2/+2 | |
Not doing so will leak. | |||||
2011-04-01 | Let's use a different prefix for sheet-local anonymous ranges. | Kohei Yoshida | 1 | -1/+1 | |
2011-04-01 | Support sheet-local anonymous database ranges. | Markus Mohrhard | 5 | -2/+53 | |
This is for an Easy Hack to allow one autofilter per sheet, not per document. | |||||
2011-03-29 | drop bogus executable flag from [ch]xx/bas/asm files | Francisco Saito | 1 | -0/+0 | |
2011-03-29 | switch sc to gbuild | Norbert Thiebaud | 1 | -48/+0 | |
2011-03-29 | Fix Windows build of SC | Fridrich Štrba | 1 | -1/+1 | |
2011-03-28 | Moved SvxBorder* into editeng namespace to avoid duplicate DOUBLE on windows | Cédric Bosdonnat | 6 | -18/+22 | |
2011-03-26 | fix debug build. use OSL_DEBUG_LEVEL instead of DBG_UTIL macro | Norbert Thiebaud | 1 | -1/+1 | |
2011-03-24 | WaE: consistent struct/class declaration | Caolán McNamara | 1 | -1/+1 | |
2011-03-24 | ScDBData now stores ScSubTotalParam as member. | Kohei Yoshida | 1 | -16/+5 | |
This cleans up its implementation quite a bit. | |||||
2011-03-23 | Moved ScSubTotalParam from global.* into own files. | Kohei Yoshida | 3 | -33/+68 | |
2011-03-23 | Removed unused code. | Kohei Yoshida | 2 | -7/+0 | |
2011-03-23 | Cleaned up ScSubTotalParam. | Kohei Yoshida | 1 | -25/+25 | |