Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-04-11 | move ScProgress outside of ScTable::Fill | Markus Mohrhard | |
2012-04-11 | callcatcher: update list | Caolán McNamara | |
2012-04-11 | String::CreateFromInt32->rtl::OUString::valueOf | Caolán McNamara | |
2012-04-10 | resolved fdo#48516 use "max columns exceeded" message if appropriate | Eike 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-10 | bnc#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-10 | Method signature cleanup. | Kohei Yoshida | |
Taking a reference to double makes no sense here. Plus the bool. | |||
2012-04-10 | Zelle->Cell, Ergebnis->Result and bit of cleanup. | Kohei Yoshida | |
2012-04-10 | Let's use constants instead of raw values to make them more traceable. | Kohei Yoshida | |
2012-04-10 | sal_Bool to bool | Eike Rathke | |
2012-04-10 | resolved 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-10 | Grouping ScFormulaOptions | Albert Thuswaldner | |
2012-04-10 | search for hidden rows/columns and not filtered areas, fdo#48449 | Markus Mohrhard | |
2012-04-10 | update unused code list | Caolán McNamara | |
2012-04-10 | Non inline methods of ScFormulaResult. | Kohei Yoshida | |
2012-04-09 | Make this non-inline too; for easier debugging. | Kohei Yoshida | |
2012-04-09 | Removed duplicated methods. | Kohei Yoshida | |
2012-04-09 | Make non-trivial methods non in-line. | Kohei Yoshida | |
2012-04-09 | WaE: unused functions | Tor Lillqvist | |
2012-04-09 | cleaning in oox part | Julien Nabet | |
2012-04-09 | Remove some unused methods | Julien Nabet | |
2012-04-09 | Dump other unused functions in oox | Julien Nabet | |
2012-04-09 | add package deps for resources | David Tardon | |
2012-04-08 | Replaced a few equal calls with == | Szabolcs Dezsi | |
2012-04-08 | Keep on cleaning oox | Julien Nabet | |
2012-04-08 | callcatcher: reduce WorksheetHelper | Caolán McNamara | |
2012-04-08 | rename gb_CppunitTest_uses_ure | David Tardon | |
2012-04-08 | compile- and run-time use of UNO must be split | David Tardon | |
There are unit tests that do not use URE, e.g., in cppuhelper. This reverts commit 33e9f3d3d6b29545ef9df3f5334c015e15caa5c8. Conflicts: sot/CppunitTest_sot_test_sot.mk svl/CppunitTest_svl_urihelper.mk | |||
2012-04-08 | clean up | David Tardon | |
2012-04-08 | simplify use of configuration from unit tests | David Tardon | |
2012-04-08 | always use --protector for UNO tests | David Tardon | |
2012-04-08 | drop uses_ure | David Tardon | |
2012-04-08 | let use_api handle the use of type rdbs at runtime | David Tardon | |
Or is there any use case where we would need to use UNO API headers, but not require the appropriate type database at runtime? | |||
2012-04-08 | Clean oox::xls::WorkbookSettings | Julien Nabet | |
2012-04-08 | Clean oox::xls::SheetViewSettings | Julien Nabet | |
2012-04-08 | gbuild: "use" vs. "add": | Michael Stahl | |
Naming convention for gbuild methods: - "add" is used for stuff that is logically a part of the target (i.e. not registered at the Module, but defined in the target's makefile) - "use" is used for stuff that is logically a different target (i.e. it is registered at the Module, has it's own makefile, may be in a different module than the target) | |||
2012-04-07 | Clean oox::xls::WorksheetSettings | Julien Nabet | |
2012-04-07 | do not include contents of huge sc/sd/sw libs into tiny unittests | Luboš Luňák | |
This decreases debug build dir size by about 0.5G for gcc and 1G for clang. | |||
2012-04-07 | callcatcher: update and remove newly unused methods | Caolán McNamara | |
2012-04-07 | Remove unused code oox::xls::PageSettings | Julien Nabet | |
2012-04-06 | Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operator | Szabolcs Dezsi | |
2012-04-06 | Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operator | Szabolcs Dezsi | |
Pattern used: find . -name "*.cxx" -exec sed -i 's/\( *\)\(else if\|if\) *( *\([^!()|&]*\)\.equalsAsciiL( *RTL_CONSTASCII_STRINGPARAM *( *\([^)]*\)) *) *) *{$/\1\2 ( \3 == \4 ) {/' \{\} \; | |||
2012-04-06 | Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operator | Szabolcs Dezsi | |
Pattern used: find . -name "*.cxx" -exec sed -i 's/\( *\)\(else if\|if\) *( *\([^!()|&]*\)\.equalsAsciiL( *RTL_CONSTASCII_STRINGPARAM *( *\([^)]*\)) *) *)$/\1\2 ( \3 == \4 )/' \{\} \; | |||
2012-04-06 | Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operator | Szabolcs Dezsi | |
Pattern used: find . -name "*.cxx" -exec sed -i 's/\( *\)\(else if\|if\) *( *\([^!()|&]*\)\.equalsAsciiL( *RTL_CONSTASCII_STRINGPARAM *( *\([^)]*\) ) *) *)$/\1\2 ( \3 == \4 )/' \{\} \; | |||
2012-04-05 | resolved fdo#48347 do not override preselected CSV with SYLK detection | Eike Rathke | |
2012-04-05 | SfxViewShell::GetScrollingMode always returns SCROLLING_DEFAULT | Ivan Timofeev | |
2012-04-05 | cppcheck Uninitialized variable | Caolán McNamara | |
2012-04-05 | remove unused code | Winfried Donkers | |
2012-04-05 | The real cleanup I meant to commit earlier... | Kohei Yoshida | |
2012-04-05 | small memory leak in table3.cxx | Markus Mohrhard | |
2012-04-05 | this does hopefully no longer result in a crash | Markus Mohrhard | |