summaryrefslogtreecommitdiff
path: root/sc
AgeCommit message (Collapse)AuthorFilesLines
2012-04-25changes to fdo#45664 EasyHackEike Rathke3-31/+25
* in dialog, placed "Save cell formulas" checkbox directly under "Save cell content as shown" as they are related and "Fixed column width" should be last * also reordered entries in .src file for overview * added HelpIDs, also to older "Quote all text cells" checkbox * reordered checkbox member variables for tab order * do not disable "Save cell content as shown" if "Save cell formulas" is checked, they are independent, content as shown still applies to value cells * changed label to "Save cell formulas instead of calculated values" for clarity * initialize "Save cell formulas" with view option that was removed from ScDocShell::AsciiSave()
2012-04-25fdo#45664 EasyHack: Add a "Save cell formulas" checkbox to the CSV Export panel.Florent Gallaire8-11/+44
2012-04-25callcatcher: remove freshly unused codeCaolán McNamara2-8/+0
2012-04-25excel filter headers: replace OSL_DEBUG_LEVEL with DBG_UTILMichael Stahl4-12/+12
Just wasted half an hour trying to track down a crash in sc unit test that was apparently caused by different object files being compiled with different OSL_DEBUG_LEVELs and thus some having XclDebugObjCounter and some not.
2012-04-25add test case for copy&paste formulas between documentsMarkus Mohrhard1-4/+42
2012-04-24fdo#34999: UI: Navigator row selector pane exceeds reserved grey areaIvan Timofeev1-1/+3
2012-04-24-Werror=unused-variableStephan Bergmann1-2/+0
2012-04-24tweak support Sheets.PrintPreview bnc#75784 allow specific sheet(s) selectionNoel Power3-10/+52
this is a followup to commit 17c8f6745f9f98013c1b08de8ec03be66546c7fc
2012-04-24first try for copy/paste formulas between docs test caseMarkus Mohrhard1-0/+27
2012-04-24add some more test cases for copying formulasMarkus Mohrhard1-1/+17
2012-04-24Remove unused code in sc.Santiago Martinez2-17/+0
2012-04-24Remove unused code in dpitemdata.Santiago Martinez2-11/+0
2012-04-23tweak paste-only context menu ( add paste only number )Noel Power4-2/+14
changed the text to really only paste text, also added pasteonly | number
2012-04-23support Sheets.PrintPreview bnc#757844Noel Power2-0/+8
there is still a little wrinkle, the preview shell always shows what sheets are selected, it's currently not possible to specify the sheets to preview
2012-04-23Remove unused codeFerran Vidal2-6/+0
2012-04-23add test case for copy/paste formulas, related fdo#48482Markus Mohrhard1-0/+21
2012-04-23I did not want to disable these testsMarkus Mohrhard1-2/+0
2012-04-23only update absolute refs when copying between docs, fdo#48482Markus Mohrhard3-11/+13
The copy/paste formulas code is getting a bit complex. I will try to write some test cases for it.
2012-04-21Remove unused code from "Spreadsheet application code"Ferran Vidal2-6/+0
2012-04-21simplify lifetime management of some variablesMarkus Mohrhard2-5/+5
2012-04-21simplify dxfs/dxf exportMarkus Mohrhard2-17/+8
2012-04-21first version of number format export into dxfMarkus Mohrhard2-21/+55
2012-04-20add stub vba implementation Application methodsNoel Power2-2/+50
added Application.DisplayExcel4Menus, Application.DisplayNoteIndicator, Application.ShowWindowsInTaskbar. Althought these attributes of the Application object don't do anything they allow setting and retrieval of the state. We could make a usable implementation for Application.DisplayNoteIndicator, the others though don't really seem to have any useful equivalent in the libreoffice world
2012-04-20vba api Application.DisplayScrollBars implementation bnc#757840Noel Power2-0/+23
2012-04-20implement VBA Application.DisplayFullScreen bnc#757885Noel Power3-1/+23
2012-04-20export font information into dxfMarkus Mohrhard1-2/+11
2012-04-20allow more complex conditional formats being exported to xlsxMarkus Mohrhard1-4/+11
2012-04-20export conditional formatting to xlsx, fdo#48360Markus Mohrhard3-2/+21
This is not yet perfect but should export already the conditional formatting and a great deal of the styles to xlsx Still missing: font export number format export some advanced conditional formats features
2012-04-19fdo#48856 update sheet-local named expressions correctlyEike Rathke5-30/+32
* Named expression must be updated before any formulas that would access them. * Handle all ocName tokens differentiating between global and sheet-local names.
2012-04-19seems there is a difference of one point between clang/gcc in chart testMarkus Mohrhard1-1/+0
I need to write a xml diff with configurable tolerance for attributes
2012-04-19remove unused variablesLuboš Luňák4-5/+0
2012-04-19fix ambiguous in win buildMarkus Mohrhard1-1/+1
2012-04-19Revert "move testCVE into slowcheck"Markus Mohrhard2-21/+21
This reverts commit 97fe16f4dc5582be597971b6e17431b8d353b8ba. Make Norbert#s tinderbox happy again.
2012-04-19update relative local range names, fdo#48856Markus Mohrhard5-13/+10
2012-04-19enable the chart2 dumper testMarkus Mohrhard2-1/+43
2012-04-19export differential formatting to xlsxMarkus Mohrhard6-12/+267
This is the first step into exporting conditional formatting to xlsx Currently we are missing the number format entries and the font entries. The patch will need some more clean up. New exported entries: - dxf - dxfs
2012-04-19Revert "do not include contents of huge sc/sd/sw libs into tiny unittests"Luboš Luňák16-54/+52
The need to export symbols for tests is apparently not considered worth the big extra disk space. This reverts commit 69d46dd7a6adfffd71da055bb65108c80d27395f. Conflicts: sd/CppunitTest_sd_uimpress.mk sw/CppunitTest_sw_swdoc_test.mk
2012-04-19change strange way of testing a boolLuboš Luňák1-1/+1
2012-04-18This is no longer relevant. Removing.Kohei Yoshida1-12/+0
2012-04-18Use global constants for initial tab count bounds checkingAlbert Thuswaldner3-10/+12
2012-04-18make sure nPos is and nChar are reset for string without placeholderNoel Power1-0/+5
2012-04-18Convert from tools/table.hxx to std::mapNoel Grandin1-39/+55
2012-04-18Remove unnecessary auto_ptr complexityNoel Grandin1-29/+11
This is a precursor patch to converting this code from tools/table.hxx to std::map
2012-04-18callcatcher: update listCaolán McNamara3-120/+0
2012-04-18Removed duplicate set/get methods for initial tab countAlbert Thuswaldner5-25/+7
2012-04-18fdo#44861 make "Replace All" work with REsDavid Tardon1-2/+2
2012-04-18Just link statically to ScFilterCreate() in the DISABLE_DYNLOADING caseTor Lillqvist1-0/+15
2012-04-17forgot the normal range namesMarkus Mohrhard1-22/+17
2012-04-17some more uno removement in oox range name importMarkus Mohrhard1-14/+18
2012-04-17WaE: MacOSX pScRangeData may be unused uninitializedCaolán McNamara1-6/+4