summaryrefslogtreecommitdiff
path: root/sc
AgeCommit message (Collapse)Author
2011-03-07Typo.Kohei Yoshida
Notes: split repo tag: calc_LO-BASE-INTEGRATION-DEV300_M101
2011-03-07Properly invalidate cached sheet XML streams during reference update.Kohei Yoshida
Failure to invalidate sheet streams during reference update caused formula cross referenceing between sheets to totallly get borked. The bug was originally reported in i#116833.
2011-03-07New unit test for sheet stream's validity during reference update.Kohei Yoshida
2011-03-07More BOOL to bool conversion.Kohei Yoshida
2011-03-07BOOL to bool conversion.Kohei Yoshida
2011-03-07First try of removing "using namespace ::com::sun::star::uno"Julien Nabet
2011-03-07Duh! I forgot to loop. Silly me.Kohei Yoshida
This caused saving of a document to ods to cause a crash unconditionally.
2011-03-06There were 2 times "using ::rtl::OUString"Julien Nabet
2011-03-06Fix windows build breakageFridrich Štrba
2011-03-05GetRangeAtBlock() to findByRange(), favor std::find_if over manual loop.Kohei Yoshida
2011-03-05Fixed a build breakage.Kohei Yoshida
2011-03-05Changed ScRangeData's index back to USHORT for now.Kohei Yoshida
2011-03-05Renamed FindIndex to findByIndex to be consistent with findByName.Kohei Yoshida
2011-03-05Removed the Insert() method; let's use insert() across the board.Kohei Yoshida
2011-03-05Finally removed the old ScRangeName code for good!Kohei Yoshida
Plus some build breakage fix.
2011-03-05Adjusted ScDocument::CopyRangeNamesFromClip() for the ScRangeName change.Kohei Yoshida
2011-03-05Extracted duplicated code blocks into a separate method.Kohei Yoshida
2011-03-05Adjusted ScDocument::CopyRangeNamesToClip() for the ScRangeName change.Kohei Yoshida
2011-03-05Adjusted ScDocument::TransferTab() for the ScRangeName change.Kohei Yoshida
2011-03-05Adjusted the excel export code.Kohei Yoshida
2011-03-05Reverted on index handling of range name objects.Kohei Yoshida
2011-03-05Adjusted ScSpecialFilterDlg for the ScRangeName change.Kohei Yoshida
2011-03-05Adjusted ScNamedRangeObj for the ScRangeName change.Kohei Yoshida
2011-03-05Adjusted ScAreaNameIterator for the ScRangeName change.Kohei Yoshida
2011-03-05More on adjusting for ScRangeName API change.Kohei Yoshida
2011-03-05More on adjusting for ScRangeName's new API.Kohei Yoshida
2011-03-05Added begin(), end() and implemented FindIndex().Kohei Yoshida
2011-03-05Identified and tagged all places where I need to modify.Kohei Yoshida
2011-03-05Removed SearchNameUpper() in favor of findByUpperName().Kohei Yoshida
2011-03-05Removed SearchName() in favor of findByName().Kohei Yoshida
2011-03-05More on re-working ScRangeName.Kohei Yoshida
2011-03-05More work on ScRangeName re-work...Kohei Yoshida
2011-03-05Started re-working ScRangeName to use ptr_map instead of own container.Kohei Yoshida
2011-03-05work around compiler problemCaolán McNamara
2011-03-05Removed /* ### ACHTUNG: Neuer Text in Resource? - lines from calcChristina Rossmanith
2011-03-04Unit test for text and text number inputs.Kohei Yoshida
2011-03-04Workaround dodgy compiler problem.Caolán McNamara
Bad parse from gcc-4.6.0 of... pvfundlg.cxx: In function 'bool lclFillListBox(ListBoxType&, const com::sun::star::uno::Sequence<rtl::OUString>&, USHORT) [with ListBoxType = ListBox, USHORT = short unsigned int]': pvfundlg.cxx:699:60: instantiated from here pvfundlg.cxx:74:55: error: invalid use of 'com::sun::star::uno::Sequence< <template-parameter-1-1> >::getConstArray [with E = rtl::OUString]' to form a pointer-to-member-function pvfundlg.cxx:74:55: note: a qualified-id is required pvfundlg.cxx:74: confused by earlier errors, bailing out
2011-03-04Oops.Kohei Yoshida
2011-03-04Don't strip the first apostrophe from a text input. (fdo#34260)Kohei Yoshida
Also removed the abuse of this behavior during datapilot output construction. Thanks largely to the unit test. :-)
2011-03-04Better error output in case something goes wrong during unit test.Kohei Yoshida
2011-03-04Reduced indent level by early bail out.Kohei Yoshida
2011-03-04BOOL to bool.Kohei Yoshida
2011-03-03findbar: Add the findbar to the menus above the Search dialog.Jan Holesovsky
2011-03-03Support external references in a whole bunch of other functions.Kohei Yoshida
GetMatrix() now returns a matrix instance even from external single and double ref tokens. Let's use this to easily add support for external refs to several functions at once.
2011-03-03Handle external references in LOOKUP, HLOOKUP and VLOOKUP. (fdo#33426)Kohei Yoshida
2011-03-03Support external reference range for INDEX function. (fdo#34938)Kohei Yoshida
2011-03-03Added new test for volatile function NOW wrapped inside IF.Kohei Yoshida
Inspired by fdo#31939.
2011-03-02Better fix for fdo#31939.Kohei Yoshida
Turns out that the token array's recalc mode is set to "recalc always" when it contains a volatile token during compilation. We can re-use that to mark the token array volatile before the interpretation starts. The end result is the same, with better performance since we can avoid re-scanning of the token array.
2011-03-02Go through all tokens to look for a volatile one. (fdo#31939)Kohei Yoshida
When a volatile token is inside a conditional function (such as IF), *and* the evaluation of that conditional skips the volatile token it would incorrectly mark the cell non-volatile. The solution is to scan through all tokens in the token array in the beginning of the calculation and mark the cell volatile if one is found.
2011-03-02Actually this will just do....Kohei Yoshida