summaryrefslogtreecommitdiff
path: root/sc/source
AgeCommit message (Collapse)Author
2012-04-13Remove unused code in sc.Santiago Martinez
2012-04-13two additional places to raise data truncated error for fdo#48516Eike Rathke
2012-04-13one more lcl_appendLineData() for line size >64kEike Rathke
Though this specific piece of code is not used in CSV import it may act on long lines now.
2012-04-12unusedcode.easy: remove various methodsThomas Arnhold
2012-04-12unusedcode.easy: Remove BinaryFilterBaseThomas Arnhold
2012-04-12callcatcher: update unused code listCaolán McNamara
2012-04-11removed unused includes in tpformula.hxxAlbert Thuswaldner
2012-04-11Removed the source file of SharedFormulaBuffer, which is no longer used.Kohei Yoshida
It has been replaced by SheetDataBuffer.
2012-04-11first part for ScTable::GetAutoFillPreviewMarkus Mohrhard
Actually this is a bit more tricky. Currently it is showing wrong values for hidden rows/columns
2012-04-11ScTable::FillAuto should work with hidden rows/columsn now tooMarkus Mohrhard
2012-04-11make ScTable::FillSeries work correctly with hidden rows/columnsMarkus Mohrhard
2012-04-11Removing a member that's not used.Kohei Yoshida
2012-04-11move ScProgress outside of ScTable::FillMarkus Mohrhard
2012-04-11callcatcher: update listCaolán McNamara
2012-04-11String::CreateFromInt32->rtl::OUString::valueOfCaolán McNamara
2012-04-10resolved fdo#48516 use "max columns exceeded" message if appropriateEike Rathke
In CSV import, instead of SCWARN_IMPORT_RANGE_OVERFLOW use SCWARN_IMPORT_ROW_OVERFLOW and SCWARN_IMPORT_COLUMN_OVERFLOW that already existed, additionally introduced SCWARN_IMPORT_CELL_OVERFLOW if single field data exceeds STRING_MAXLEN. Row overflow takes precedence over column overflow that takes precedence over cell overflow.
2012-04-10bnc#755775: Set numeric formula results when importing xls document.Kohei Yoshida
Without this, calculation upon import may incorrectly show #VALUE! in some cells when the iterative calculation option is turned on. This is on par with what we do during the ods document import.
2012-04-10Method signature cleanup.Kohei Yoshida
Taking a reference to double makes no sense here. Plus the bool.
2012-04-10Zelle->Cell, Ergebnis->Result and bit of cleanup.Kohei Yoshida
2012-04-10Let's use constants instead of raw values to make them more traceable.Kohei Yoshida
2012-04-10sal_Bool to boolEike Rathke
2012-04-10resolved fdo#48501 enable line size >64k in SvStream::Read*Line()Eike Rathke
CSV and other text formats may come with line sizes >64k that so far were truncated due to limitations in ByteString/UniString/String, even if one line consists of several fields that each are <64k. Introduced additional SvStream methods that read into rtl::OString and rtl::OUString and let SvStream::ReadUniOrByteStringLine() fill solely an rtl::OUString. Made Calc CSV import use those.
2012-04-10Grouping ScFormulaOptionsAlbert Thuswaldner
2012-04-10search for hidden rows/columns and not filtered areas, fdo#48449Markus Mohrhard
2012-04-10update unused code listCaolán McNamara
2012-04-10Non inline methods of ScFormulaResult.Kohei Yoshida
2012-04-09Make this non-inline too; for easier debugging.Kohei Yoshida
2012-04-09Removed duplicated methods.Kohei Yoshida
2012-04-09Make non-trivial methods non in-line.Kohei Yoshida
2012-04-09WaE: unused functionsTor Lillqvist
2012-04-09cleaning in oox partJulien Nabet
2012-04-09Remove some unused methodsJulien Nabet
2012-04-09Dump other unused functions in ooxJulien Nabet
2012-04-08Replaced a few equal calls with ==Szabolcs Dezsi
2012-04-08Keep on cleaning ooxJulien Nabet
2012-04-08callcatcher: reduce WorksheetHelperCaolán McNamara
2012-04-08Clean oox::xls::WorkbookSettingsJulien Nabet
2012-04-08Clean oox::xls::SheetViewSettingsJulien Nabet
2012-04-07Clean oox::xls::WorksheetSettingsJulien Nabet
2012-04-07do not include contents of huge sc/sd/sw libs into tiny unittestsLuboš Luňák
This decreases debug build dir size by about 0.5G for gcc and 1G for clang.
2012-04-07callcatcher: update and remove newly unused methodsCaolán McNamara
2012-04-07Remove unused code oox::xls::PageSettingsJulien Nabet
2012-04-06Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operatorSzabolcs Dezsi
2012-04-06Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operatorSzabolcs Dezsi
Pattern used: find . -name "*.cxx" -exec sed -i 's/\( *\)\(else if\|if\) *( *\([^!()|&]*\)\.equalsAsciiL( *RTL_CONSTASCII_STRINGPARAM *( *\([^)]*\)) *) *) *{$/\1\2 ( \3 == \4 ) {/' \{\} \;
2012-04-06Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operatorSzabolcs Dezsi
Pattern used: find . -name "*.cxx" -exec sed -i 's/\( *\)\(else if\|if\) *( *\([^!()|&]*\)\.equalsAsciiL( *RTL_CONSTASCII_STRINGPARAM *( *\([^)]*\)) *) *)$/\1\2 ( \3 == \4 )/' \{\} \;
2012-04-06Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operatorSzabolcs Dezsi
Pattern used: find . -name "*.cxx" -exec sed -i 's/\( *\)\(else if\|if\) *( *\([^!()|&]*\)\.equalsAsciiL( *RTL_CONSTASCII_STRINGPARAM *( *\([^)]*\) ) *) *)$/\1\2 ( \3 == \4 )/' \{\} \;
2012-04-05resolved fdo#48347 do not override preselected CSV with SYLK detectionEike Rathke
2012-04-05SfxViewShell::GetScrollingMode always returns SCROLLING_DEFAULTIvan Timofeev
2012-04-05cppcheck Uninitialized variableCaolán McNamara
2012-04-05remove unused codeWinfried Donkers