summaryrefslogtreecommitdiff
path: root/sc/source
AgeCommit message (Collapse)AuthorFilesLines
2010-12-02Cache field style index for current range for better performance.Kohei Yoshida2-1/+32
This cuts about 3 seconds off with my test document.
2010-12-02Replaced the inner vector with flat_segment_tree.Kohei Yoshida2-25/+15
This dramatically reduced memory footprint per sheet during export to ods. With my test doc with 293 sheets, the resident memory size dropped from 1.4 GB to 270 MB.
2010-12-02Replaced std::vector with boost::ptr_vector.Kohei Yoshida2-7/+7
Nested std::vector does excessive copying of inner vector instances behind the scene. Using ptr_vector to store the pointers to the inner vector instances avoids that. Doing this alone cuts memory footprint per sheet when exporting document to .ods file.
2010-12-02WaE, fix member init listCaolán McNamara1-1/+1
2010-12-01Remove DECLARE_LIST( ScHTMLImageList, ScHTMLImage* ) from eeparser.hxxJoseph Powers3-43/+33
This is the 1st of 2 DECLARE_LIST()s in the file.
2010-12-01Remove DECLARE_LIST() from class ScDocumentJoseph Powers4-38/+25
The list wasn't needed. You could only have 1 item in the list at any one time; so, I just replaced it with a pointer.
2010-12-01remove a compiler warningJoseph Powers1-18/+20
The compiler was thinking that you could get to the end without a return. It was wrong... but this will shut it up.
2010-12-01cppcheck: can reduce the scope of this variableCaolán McNamara1-1/+1
2010-12-01Resolves: rhbz#658304 late-init color config. to avoid crash on recoveryDavid Tardon5-35/+55
2010-11-30Fix incorrect merge conflict. This fixes fdo#32002.LIBREOFFICE_PRE_BOOTSTRAP_BUILDCaolán McNamara1-2/+0
2010-11-30Fix Muthu Subramanian type issueJoseph Powers1-1/+1
2010-11-30Import of super/subscript properties of cells - n#655193Muthu Subramanian K1-10/+38
2010-11-30Import hyperlinks of textboxes/shapes - n#655216Muthu Subramanian K1-3/+7
2010-11-29callcatcher: unused methodsCaolán McNamara1-12/+0
2010-11-28cppcheck: unit memberCaolán McNamara1-0/+1
2010-11-28cppcheck: can reduce scope of this variableCaolán McNamara1-2/+1
2010-11-27cppcheck: use prefix formCaolán McNamara1-5/+5
2010-11-27fix debug build with dbglevel=2David Tardon1-17/+22
2010-11-27remove unnecessary #ifDavid Tardon1-2/+0
It's in #if OSL_DEBUG_LEVEL > 1 block already.
2010-11-26cppcheck: use prefix variantfeature/bootstrap-buildCaolán McNamara1-1/+1
2010-11-26This one also unintended commit... Sigh.Kohei Yoshida1-1/+0
2010-11-26Heh, nuke this also. What's wrnog with me?Kohei Yoshida1-2/+0
2010-11-26Removed stack printer definition. Oops.Kohei Yoshida1-41/+0
I didn't intend to check this piece in, sorry.
2010-11-26samba-hyperlinks-sc-sd.diff: migratedJan Holesovsky1-1/+9
process relative SMB paths (in hyperlinks) correctly
2010-11-26fix failing build on windows, use osl_getSystemTime instead of gettimeofdayNoel Power1-4/+3
2010-11-26Add more files to EXCEPTIONSFILES.Thomas Klausner3-5/+5
2010-11-25RTL_CONSTASCII_USTRINGPARAM in calcGert Faller4-10/+11
2010-11-25Merge branch 'master' of ssh://git.freedesktop.org/git/libreoffice/calcJan Holesovsky5-10/+11
2010-11-25cppcheck: methods can be constCaolán McNamara1-1/+1
2010-11-25cppcheck: methods can be constCaolán McNamara1-2/+4
2010-11-25remove empty methodCaolán McNamara2-5/+5
2010-11-25Fixed crash in xls export caused by off-by-one iteratorKatarina Machalkova1-2/+1
(this is for bnc#653533 and fdo#31141)
2010-11-25Merge remote branch 'origin/libreoffice-3-3'Jan Holesovsky5-3/+26
Conflicts: sc/source/filter/xml/xmlimprt.cxx
2010-11-25cppcheck: methods can be constCaolán McNamara2-2/+2
2010-11-25cppcheck: methods can be constCaolán McNamara2-8/+10
2010-11-25WaE, use SAL_PRIdINT32 for printfCaolán McNamara1-1/+1
2010-11-24.src cleanupJoseph Powers9-22/+8
2010-11-24cppcheck: Fixed self-assignment of sModuleName.Kohei Yoshida1-2/+2
2010-11-24cppcheck: marked several methods const.Kohei Yoshida1-2/+2
2010-11-24cppcheck: removed a local var that is never used, plus some cleanups.Kohei Yoshida1-7/+1
2010-11-24cppcheck: Variable 'nPosY' is assigned a value that is never used.Kohei Yoshida1-2/+0
2010-11-24cppcheck: removed local variable that was not really used.Kohei Yoshida1-2/+0
2010-11-24cppcheck: removed excess parens.Kohei Yoshida1-1/+1
2010-11-24cppcheck: reduce the scopes of local variables.Kohei Yoshida1-8/+9
2010-11-24Move typedef for private members into their respective class scope.Kohei Yoshida2-12/+53
2010-11-24uno::Reference -> Reference, to make it shorter.Kohei Yoshida1-36/+37
2010-11-24Let's not include everything from the rtl namespace.Kohei Yoshida1-1/+2
2010-11-24Reduced indentation levels & some code cleanups.Kohei Yoshida1-129/+119
2010-11-24.src cleanupJoseph Powers18-46/+104
2010-11-24Fixed indentation inconsistencies.Kohei Yoshida1-39/+38