summaryrefslogtreecommitdiff
path: root/sc/source
AgeCommit message (Collapse)AuthorFilesLines
2010-12-10Removed ScRangePairList::at() also, in favor of operator[].Kohei Yoshida5-18/+13
2010-12-10Removed ScRangeList::at() in favor of operator[].Kohei Yoshida27-68/+49
2010-12-10ScRangePtr is now gone. Good riddance.Kohei Yoshida23-41/+41
2010-12-10Use for_each to format string for range list.Kohei Yoshida1-8/+41
2010-12-10More on using iterators over element access operator.Kohei Yoshida1-27/+30
2010-12-10Access data member directly if we can.Kohei Yoshida1-1/+1
2010-12-10BOOL to boolKohei Yoshida1-2/+2
2010-12-10Use for_each & iterators to count the number of cells.Kohei Yoshida1-12/+22
2010-12-10More on using iterators over manual loops.Kohei Yoshida1-23/+30
2010-12-10Prefer to use iterators to for loop & element access via [].Kohei Yoshida1-17/+35
2010-12-10Some cleanup & build fix.Kohei Yoshida1-52/+40
I need to export symbols of ScRangePairList as it is called from the excel export filter.
2010-12-10XLSX VML Export fixes.Muthu Subramanian K1-1/+4
VML files have .vml (instead of .xml)
2010-12-10Remove DECLARE_LIST( ScRangePairList )Joseph Powers6-208/+277
2010-12-10Remove of the virtual function AppendContentserval1-18/+0
2010-12-09Don't allow client code to call clear() directly, it leaks memory.Kohei Yoshida11-26/+35
Call RemoveAll() instead. Better yet, I've removed clear() call as it's safer this way.
2010-12-09More efficient Find() operations using iterators.Kohei Yoshida1-13/+23
2010-12-09Access maRanges directly when we can.Kohei Yoshida1-13/+13
2010-12-09First cut on making ScRangeList not a child class of std::vector.Kohei Yoshida11-27/+116
Also fixed some memory leaks along the way.
2010-12-09Suppressed compiler warnings.Kohei Yoshida2-3/+3
2010-12-09Delete its objects before removing pointers.Kohei Yoshida1-1/+5
2010-12-09Remove another DECLARE_LIST() from CalcJoseph Powers69-961/+676
Signed-off-by: Kohei Yoshida <kyoshida@novell.com>
2010-12-09cppcheck: the scope of these variables can be reducedCaolán McNamara1-2/+2
2010-12-09cppcheck: can reduce the scope of these variablesCaolán McNamara1-1/+1
2010-12-08Oops I forgot to pass the iterator position.Kohei Yoshida1-1/+1
2010-12-08More on micro-speed optimization on std::map insertion.Kohei Yoshida2-32/+32
Cf. Effective STL, Item 24.
2010-12-08Slightly more efficient insertion for std::map.Kohei Yoshida1-6/+8
2010-12-08More on killing use of operator[] with std::map.Kohei Yoshida1-2/+9
2010-12-08Nuke more operator[] usage with std::map.Kohei Yoshida1-3/+5
2010-12-08More operator[] usage removal with std::map.Kohei Yoshida1-2/+10
2010-12-08Remove use of operator[] once again.Kohei Yoshida1-10/+10
2010-12-08Another removal of use of operator[] with std::map.Kohei Yoshida1-1/+7
2010-12-08Removed another use of operator[] with std::map.Kohei Yoshida1-2/+11
2010-12-08Replace one use of ScfRefMapNigel Hawkins3-16/+44
Signed-off-by: Kohei Yoshida <kyoshida@novell.com>
2010-12-08Avoid use of operator[] with std::map.Kohei Yoshida1-2/+13
2010-12-08Avoid using operator[] with std::map when inserting a new element.Kohei Yoshida1-2/+16
2010-12-07remove duplicate definition of memory pool for ImplTokenIteratorDavid Tardon1-4/+0
This is already done in formula/source/core/api/token.cxx !
2010-12-06remove obsolete __FAR_DATAfeature/currency-64bitMichael Callahan16-142/+142
2010-12-05Replace all occured, occurance etc.Takeshi Abe15-24/+24
2010-12-05WaE, shadowed variable namesCaolán McNamara1-2/+1
2010-12-04Remove DECLARE_LIST( ScRTFDefaultList, ScRTFCellDefault* )Joseph Powers2-17/+23
2010-12-04Remove DECLARE_LIST( ScHTMLGraphList, ScHTMLGraphEntry* )Joseph Powers3-44/+21
2010-12-03WaE, shadowed variablesCaolán McNamara1-14/+7
2010-12-03WaE, shadowed variablesCaolán McNamara2-13/+11
2010-12-03Remove DECLARE_LIST( ScEEParseList, ScEEParseEntry* ) from ScEEParserJoseph Powers6-68/+112
2010-12-03more Sal n elementsKenneth Venken13-28/+36
2010-12-03WaE: ptr_vector ctor takes a size to reserve, not a pointerCaolán McNamara1-1/+1
2010-12-02Fix another mistake in my patchJoseph Powers1-2/+2
Hopefully this is the last fix.
2010-12-02Fix "Remove DECLARE_LIST() from class ScDocument"Joseph Powers3-23/+37
Fixes some issues with commit 95b419dfeea83549ed021d9b1ccc0da0649779ab.
2010-12-02Moved new wrapper class into own files.Kohei Yoshida5-63/+139
2010-12-02Refactored to avoid using CR_HIDDEN and CR_FILTERED.Kohei Yoshida2-42/+120
CR_HIDDEN and CR_FILTERED as row attributes are deprecated; we should eliminate all instances of their usage ASAP.