summaryrefslogtreecommitdiff
path: root/sc
AgeCommit message (Collapse)Author
2012-01-30Make named ranges dialog more consistent, localizable (III)Petr Mladek
There was still not enough space for German traslation
2012-01-30Option to set tab prefix for new worksheetsAlbert Thuswaldner
2012-01-30refactor ConvertLineEndCaolán McNamara
2012-01-30aInputStr never used, *perhaps* it should have been, but 10+ years this wayCaolán McNamara
2012-01-30Updated error message for Invalid sheet nameAlbert Thuswaldner
2012-01-30Make named range dialog more consistent, localizable (II)Stefan Knorr (astron)
2012-01-30remove '#define UNOOUSTRING ::rtl::OUString'Ivan Timofeev
2012-01-30clean-up sc's knownissues.xclMarkus Mohrhard
2012-01-30add test case for XReplaceableMarkus Mohrhard
2012-01-28Remove unused code as listed in unusedcode.easySantiago Martinez
2012-01-27Bypass building BASIC and scripting related modules for iOSTor Lillqvist
Any LO-based app distributed through the App Store can't have scripting or extendability anyway. Sure, this will break the build elsewhere because of missing headers. No big deal, I will take care of that eventually. It isn't as if there would anybody else building for iOS anyway, as far as I know. If there is, please make yourself heard.
2012-01-27Unit test for updating formula cells that references into the pivot table.Kohei Yoshida
2012-01-27Replace SvtUndoOptions with (simplified) direct configuration access.Stephan Bergmann
Also, code in sw can be simplified under the premise that always /org.openoffice.Office.Common/Undo/Steps > 0.
2012-01-27fdo#44143: Keep cells with broadcasters alive during deletion.Kohei Yoshida
Or else it would partially break formula reference chain.
2012-01-27Revert "fdo#44143: Keep cells with broadcasters alive during deletion."Eike Rathke
This reverts commit af70bc00c6714eb8695babdf5af07416552f7034. To be replaced by a better solution.
2012-01-26fdo#44143: Keep cells with broadcasters alive during deletion.Kohei Yoshida
Or else it would partially break formula reference chain.
2012-01-26Make named ranges dialog more consistent, localizableStefan Knorr (astron)
2012-01-26resolved fdo#38595 border width lost in ODF importEike Rathke
2012-01-26cast from BorderLine to BorderLine2 is not validEike Rathke
Don't access a css::table::BorderLine struct as if it was a css::table::BorderLine2 struct, which it isn't. A proper implementation would need to pass BorderLine2 structs around for which it would need a css::table::TableBorder2 struct that holds BorderLine2 instead of BorderLine, and adapt various places for API compatibility to support both. For now use the default table::BorderLineStyle::SOLID to set the line style at ::editeng::SvxBorderLine
2012-01-26Revert "TEMP"Fridrich Štrba
Sorry, for this one, pushed by mistake :( This reverts commit 31c02baa10f7da947aa073f8af3f8e370acabd90.
2012-01-26TEMPFridrich Štrba
2012-01-26switch subsequenttest testdocs from sdc to ods, fdo#43376Markus Mohrhard
2012-01-25add test for ScTableSheetObjMarkus Mohrhard
2012-01-25adjust test nameMarkus Mohrhard
2012-01-25ScTableSheetObj::findAll does not return the correct range, fdo#43462Markus Mohrhard
2012-01-25disable all java based tests covered now by c++ based testsMarkus Mohrhard
2012-01-25add XNamed interface test and add this test to ScDataPilotTableObjMarkus Mohrhard
2012-01-25New unit test for refreshing a pivot table without data cache.Kohei Yoshida
Also, FillOldParam() and GetMembers() removed since 1) they were not necessary and 2) it would create a data cache in the process.
2012-01-26Deleting a null pointer is safeTakeshi Abe
2012-01-25New unit test for pivot table's date output handling.Kohei Yoshida
We rely on the cell type of those date value outputs when grouping by date or value range.
2012-01-25fix initial height of multiline input windowNoel Power
There is a hardcoded preferred height for the input window that was getting picked up becuase the result of GetTextHeight was just '1' ( due to no font being set up ) We shouldn't use a hardcoded value, we should always use the proper text height e.g. the result of a successfull call to GetTextHeight() ( the patch makes sure we get a decent result from this call )
2012-01-25optimized zoom to use more common intervalsTim Hardeck
Round zoom values beginning with 50 to a multiple of 5, with 100 to one of 10, with 500 to one of 50 and with 1000 to one of 100. The step 100 is enforced to have one fixed point.
2012-01-24DataPilot to PivotTable in function names.Kohei Yoshida
From now on we'll stick with the 'pivot table' terminology...
2012-01-24fdo#45067: Differentiate numeric and non-numeric field member values.Kohei Yoshida
2012-01-24use write_uInt16s_FromOUString patternCaolán McNamara
2012-01-24fix ( hopefully ) viewing artifacts in input line fdo#44391Noel Power
2012-01-24Revert "fix ( hopefully ) viewing artifacts in input line fdo#44391"Noel Power
This reverts commit 1f0ba007489e77e4145fc840cc3a878772494fd7.
2012-01-24fix ( hopefully ) viewing artifacts in input line fdo#44391Noel Power
2012-01-23fdo#45067: We need automatic number detection for date/number grouping.Kohei Yoshida
2012-01-24enable ScDataPilotTableObj::testRefresh againMarkus Mohrhard
2012-01-23Fix refresh problem on pivot tables whose data cache have not been created.Kohei Yoshida
2012-01-23erase the correct element in ScColumn::Delete(), not the last oneEike Rathke
This fixes the dreaded crash in sc_unoapi test. Thanks to Kohei for pointing in the right direction.
2012-01-23refactor concept for c++ based subsequenttestsMarkus Mohrhard
2012-01-23add library for c++ based subsequenttestsMarkus Mohrhard
use this library for interface tests and implement the test in the correct module by creating one test class per implementation class The implementation class should inherit from all interface tests it needs This should make it more easy to write tests since we no longer need to write the same test method multiple times
2012-01-23resolved rhbz#783556 crash in ScMatrix::GetDimensons() from ScInterpreterEike Rathke
* Interpreter tried to access a nonexistent matrix for external reference. * In ScInterpreter::PopExternalDoubleRef(ScMatrixRef& rMat) set error for unexpected conditions. In caller or descendants check for error or presence of ScMatrix.
2012-01-23add the "Send Feedback..." help menu itemIvan Timofeev
2012-01-23Redundant condition and Comment Translations.Mariusz Dykierek
2012-01-22resolved fdo#45032 Calc export to HTML with graphics failedEike Rathke
Fixed a misconception in transition from List to to ptr_vector of commit db599f64e63a3141159b7f0e59783197c39b3e02, List::Next() returned NULL when at end of list, mimic that.
2012-01-21Improve checking for emptinessThomas Arnhold
2012-01-21Removed some unused parameters; added SAL_UNUSED_PARAMETER.Stephan Bergmann
SAL_UNUSED_PARAMETER (expanding to __attribute__ ((unused)) for GCC) is used to annotate legitimately unused parameters, so that static analysis tools can tell legitimately unused parameters from truly unnecessary ones. To that end, some patches for external modules are also added, that are only applied when compiling with GCC and add necessary __attribute__ ((unused)) in headers.