summaryrefslogtreecommitdiff
path: root/linguistic
AgeCommit message (Collapse)Author
2012-06-03targeted string re-work (ii)Olivier Hallot
Further simplification of d8e3eb234b729e9b3d9b8d81abd27f228fd06687 Change-Id: I2fa695e236cb6dc3be66fc57e7fae167cc368904
2012-06-02targeted string re-workNorbert Thiebaud
Change-Id: I6f5075e40d820c91b3fa8a359564da4a4d098032
2012-05-29targetted SAL_N_ELEMENTS reversion.Michael Meeks
Change-Id: I30be93ccaeb1f9fd17cbe9e3ed3165e094810b2e
2012-05-14fdo#35270 - enable caching of grammar checker propertiesMichael Meeks
Thanks to Daniel Naber for some great detective work Change-Id: I8318368971c3d34064ba2e59e757a2e5839d7d6b
2012-05-11More visibility markup needed for Mac OS XTor Lillqvist
Change-Id: Ie84224c381eca49e2d5fe544a4902845889f9771
2012-04-29make gbuild the default assumption of build.plBjoern Michaelsen
this removes dmake completely out of the build for migrated modules build.pl now assumes modules to be gbuild, unless there is a prj/dmake file Change-Id: I674a036b182ee13c5ec093e83cb3d38133112d3b
2012-04-21Resolves: fdo#39999: Changing spelling preferences requires application restartSzabolcs Dezsi
2012-04-20WaE: MSVC2008 C2220 unsafe mix of types in operationCaolán McNamara
2012-04-08LinkTarget.mk: remove gb_LinkTarget_add_package_headersMichael Stahl
2012-04-08gbuild: "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-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-03-23.xcl files don't need executable bitsMichael Stahl
2012-03-23.sce files don't need executable bitsMichael Stahl
2012-03-23.component files don't need executable bitsMichael Stahl
2012-03-23.java files don't need executable bitsMichael Stahl
2012-03-21chmod -xTor Lillqvist
2012-03-14Enable -Wnon-virtual-dtor for GCC 4.6Stephan Bergmann
...which has the necessary features to support it. Change a lot of classes to either contain a protected non-virtual dtor (which is backwards compatible, so even works for cppumaker-generated UNO headers) or a public virtual one. cppuhelper/propertysetmixin.hxx still needs to disable the warning, as the relevant class has a non-virtual dtor but friends, which would still cause GCC to warn. Includes a patch for libcmis, intended to be upstreamed.
2012-03-10gbuild: get rid of realpath in gb_Foo_set_includeMatúš Kukan
2012-02-20gb_JunitTest_JunitTest takes only one argumentStephan Bergmann
2012-02-18Fix typos in commentsElton Chung
2012-02-17Remove unused code.Petr Vorel
2012-02-16possible inefficient checking for emptinessMariusz Dykierek
2012-02-15Various string function clean upStephan Bergmann
Added: * rtl::OString::matchL * rtl::OString::endsWith * rtl::OString::endsWithL * rtl::OString::indexOfL * rtl::OString::replaceFirst * rtl::OString::replaceAll * rtl::OString::getToken * rtl::OUString::endsWith * rtl::OUString::replaceFirst * rtl::OUString::replaceFirstAsciiL * rtl::OUString::replaceFirstAsciiLAsciiL * rtl::OUString::replaceAll * rtl::OUString::replaceAllAsciiL * rtl::OUString::replaceAllAsciiLAsciiL * rtl::OUString::getToken plus underlying C functions where necessary Deprecated: * comphelper::string::remove * comphelper::string::getToken Removed: * comphelper::string::searchAndReplaceAsciiL * comphelper::string::searchAndReplaceAllAsciiWithAscii * comphelper::string::searchAndReplaceAsciiI * comphelper::string::replace * comphelper::string::matchL * comphelper::string::matchIgnoreAsciiCaseL * comphelper::string::indexOfL Also fixed some apparent misuses of RTL_CONSTASCII_USTRINGPARAM -> RTL_CONSTASCII_STRINGPARAM.
2012-02-13Remove unused codeElton Chung
2012-02-11Avoid Possible null pointer dereference in linguistic/source/spelldsp.hxxJulien Nabet
(Thank you to Ivan and Riccardo for their suggestions)
2012-02-08unusedcode.easy: Removed unused code (linguistic)Alexander Bergmann
2012-02-08Added READMEs for modules which used to be in libs-coreJosh Heidenreich
2012-02-05switch to include-based build rather than sourced-based buildNorbert Thiebaud
2012-02-01A few safe replacements of pathes->pathsJesús Corrius
2012-01-23ByteString->rtl::OStringCaolán McNamara
2012-01-17Replaced SAL_INFO with SAL_WARN were applicable.Marcel Metz
2012-01-16Replaced DBG_ERRORFILE with SAL_INFO.Marcel Metz
2012-01-09simplify CharClassCaolán McNamara
multiple variants of toUpper (etc) some that take a non-const OUString or String and modify it some that take a const OUString or String and return a new one some that take part of a const OUString or String and return a new one
2012-01-06Removed unnecessary tools/debug.hxx includes.Marcel Metz
2012-01-05getPropertyMap can return a reference instead of a pointerCaolán McNamara
2012-01-05Removed unnecessary tools includes.Marcel Metz
2012-01-05Removed unnecessary tools includes.Marcel Metz
2011-12-30Fix for fdo43460 Part XXIII getLength() to isEmpty()Olivier Hallot
Part XXIII Modules linguistic
2011-12-22ByteString->rtl::OStringCaolán McNamara
2011-12-20catch exception by constant referenceTakeshi Abe
2011-12-16Properly join spawned GrammarCheckingIterator thread.Stephan Bergmann
It was still running during shutdown of sw_complex's checkFlies test, causing problems. For this to work, Desktop::DeInit needs to be called with SolarMutex unlocked, which looks like the right way, anyway. Hopefully it does not unearth another round of bugs...
2011-12-08Less succes, more successStefan Knorr (astron)
2011-12-07in modules, when we have a env we are in stage gbuildBjoern Michaelsen
2011-12-06Removed unnessecary tools/table.hxx includesMarcel Metz
2011-11-29move reconfigure into gbuildBjoern Michaelsen
2011-11-28ByteString->rtl::OUStringToOStringCaolán McNamara
2011-11-27remove precompiled_xxx.hxx/cxxNorbert Thiebaud
2011-11-27remove pch from the include listNorbert Thiebaud