Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-04-06 | callcatcher: update unused code | Caolán McNamara | |
2012-04-06 | optional argument is always provided | Caolán McNamara | |
2012-04-06 | UniString::CreateFromInt32(0) -> "0" | Caolán McNamara | |
2012-04-06 | enable -fno-enforce-eh-specs only for non-dbgutil builds | Luboš Luňák | |
The code uses exception specifications, so it doesn't make much sense to have them, but disable them using a gcc option. MSVC ignores them completely, so this would leave only clang as the only compiler to enforce them. Either the majority compiler needs to enforce it at least in dbgutil builds (in product builds the option can be seen as a kind of NDEBUG), or alternatively the exception specifications should be removed. | |||
2012-04-06 | reduce overzealous naming | Luboš Luňák | |
2012-04-06 | Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operator | Szabolcs Dezsi | |
2012-04-06 | I suspect the logic is supposed to be the other way around. | Jan Holesovsky | |
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 | Kill this. | Jan Holesovsky | |
2012-04-06 | javaloader: add_linked_lib salhelper | Matúš Kukan | |
2012-04-06 | fix build of jurt_urp | Matúš Kukan | |
2012-04-06 | n#751017 testcase | Miklos Vajna | |
2012-04-06 | fix makefiles | David Tardon | |
2012-04-06 | fix build on windows (i hope) | David Tardon | |
2012-04-06 | reset the flag before checking it it will be set again | Luboš Luňák | |
2012-04-06 | fix gcc-4.0.1 and/or 32bit build for string literals | Luboš Luňák | |
Plain 0 is ambiguous to convert to either long or const char*, and just adding an overload next to sal_Int32 would be a dupe if they actually are the same type, so just go with plain int, which is the sensible thing to do anyway. | |||
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 | Merge remote-tracking branch 'origin/master' | David Tardon | |
2012-04-06 | merge feature/gbuild_components | David Tardon | |
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 | Do not extern these const char[]'s. | Jan Holesovsky | |
2012-04-06 | string literal O(U)StringBuffer ctors too, after all | Luboš Luňák | |
2012-04-06 | Review of some RTL_CONSTASCII_USTRINGPARAM removal | Olivier Hallot | |
Remove OUString constructor where not needed. | |||
2012-04-06 | include variable before it's used | Matúš Kukan | |
2012-04-06 | ops, this should not be deleted | Matúš Kukan | |
2012-04-06 | Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operator | Szabolcs Dezsi | |
Pattern used: find . -name "*.cxx" -exec sed -i 's/\( *\)return \([^()]*\)\.equalsAsciiL( *RTL_CONSTASCII_STRINGPARAM *( *\([^)]*\) ) *);/\1return \2 == \3;/' \{\} \; | |||
2012-04-06 | make add_custom_headers better | Matúš Kukan | |
2012-04-06 | Remove unused code (vcl) | Thomas Collerton | |
2012-04-06 | jurt: use CustomTarget makefile | Matúš Kukan | |
2012-04-06 | ridljar: use CustomTarget makefile | Matúš Kukan | |
2012-04-06 | unoil: use CustomTarget makefiles | Matúš Kukan | |
2012-04-06 | gbuild: add customtarget dependencies for java stuff | Matúš Kukan | |
2012-04-06 | rtftok: drop m_bIsSubstream, we already have a m_pSuperstream | Miklos Vajna | |
Originally there was m_bIsSubstream (true for footnotes, headers, etc.), then we needed a pointer to the original stream, now the boolean value is redundant, so remove it. | |||
2012-04-05 | More removal of RTL_CONSTASCII_USTRINGPARAM in sd | Olivier Hallot | |
More removal of RTL_CONSTASCII_USTRINGPARAM in module sd | |||
2012-04-05 | More RTL_CONSTASCII_USTRINGPARAM cleanup | Olivier Hallot | |
More RTL_CONSTASCII_USTRINGPARAM in module sd | |||
2012-04-05 | Cleanup of some RTL_CONSTASCII_USTRINGPARAM macro in sd | Olivier Hallot | |
Cleanup of some RTL_CONSTASCII_USTRINGPARAM macro in module sd | |||
2012-04-05 | Fix Prefer prefix ++/-- operators | Julien Nabet | |
Includes too replacement < by != for comparison between current and end iterators | |||
2012-04-05 | Clean up optional online update module | Stephan Bergmann | |
* The updatecheckui lib is part of that module; should its scp entry also be marked ComponentCondition="ISCHECKFORPRODUCTUPDATES=1"? * unpack_update (and other scripts as well?) need only be generated if ENABLE_ONLINE_UPDATE. * It is inconsistent that there is a distinct onlineupdate.xcd not merged into main.xcd, while the updchk and updatecheckui component files are merged into the global services.rdb. * The updchk res file should also go into (a resource sub-module of) the optional online update module. | |||
2012-04-05 | resolved fdo#48347 do not override preselected CSV with SYLK detection | Eike Rathke | |
2012-04-05 | Catch attempts to open /assets files read-write. Improve debugging output | Tor Lillqvist | |
2012-04-05 | Do two fairly useless but often emitted OSL_TRACEs only if OSL_DEBUG_LEVEL > 2 | Tor Lillqvist | |
2012-04-05 | dlopen() also the sw and swd libs ahead of time so that they can be debugged | Tor Lillqvist | |
2012-04-05 | Set TMPDIR also in non-NativeActivity apps | Tor Lillqvist | |
2012-04-05 | SfxViewShell::GetScrollingMode always returns SCROLLING_DEFAULT | Ivan Timofeev | |
2012-04-05 | fdo#43895 lp#905355: fix the fix so it doesn't crash | Michael Stahl | |
rtl::OUString rtl::OUString::copy(sal_Int32) const: Assertion `beginIndex >= 0 && beginIndex <= getLength()' failed. (regression from dd2fe95cce75f1157bd1c75d286a0047b2e4175e) | |||
2012-04-05 | shell: fix silly flags from 2c5a817591 | Michael Stahl | |
2012-04-05 | cppcheck Uninitialized variable | Caolán McNamara | |
2012-04-05 | Removal VERBOSE | Rob Snelders | |
2012-04-05 | remove unused code | Winfried Donkers | |