summaryrefslogtreecommitdiffstats
path: root/linguistic
Commit message (Collapse)AuthorAgeFilesLines
* targeted string re-work (ii)Olivier Hallot2012-06-034-56/+48
| | | | | | Further simplification of d8e3eb234b729e9b3d9b8d81abd27f228fd06687 Change-Id: I2fa695e236cb6dc3be66fc57e7fae167cc368904
* targeted string re-workNorbert Thiebaud2012-06-024-14/+13
| | | | Change-Id: I6f5075e40d820c91b3fa8a359564da4a4d098032
* targetted SAL_N_ELEMENTS reversion.Michael Meeks2012-05-295-7/+7
| | | | Change-Id: I30be93ccaeb1f9fd17cbe9e3ed3165e094810b2e
* fdo#35270 - enable caching of grammar checker propertiesMichael Meeks2012-05-141-3/+2
| | | | | | Thanks to Daniel Naber for some great detective work Change-Id: I8318368971c3d34064ba2e59e757a2e5839d7d6b
* More visibility markup needed for Mac OS XTor Lillqvist2012-05-112-7/+7
| | | | Change-Id: Ie84224c381eca49e2d5fe544a4902845889f9771
* make gbuild the default assumption of build.plBjoern Michaelsen2012-04-291-1/+0
| | | | | | | | 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
* Resolves: fdo#39999: Changing spelling preferences requires application restartSzabolcs Dezsi2012-04-211-0/+1
|
* WaE: MSVC2008 C2220 unsafe mix of types in operationCaolán McNamara2012-04-201-2/+2
|
* LinkTarget.mk: remove gb_LinkTarget_add_package_headersMichael Stahl2012-04-081-1/+1
|
* gbuild: "use" vs. "add":Michael Stahl2012-04-083-4/+4
| | | | | | | | | 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)
* Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operatorSzabolcs Dezsi2012-04-063-11/+10
|
* Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operatorSzabolcs Dezsi2012-04-062-2/+2
| | | | | | Pattern used: find . -name "*.cxx" -exec sed -i 's/\( *\)\(else if\|if\) *( *\([^!()|&]*\)\.equalsAsciiL( *RTL_CONSTASCII_STRINGPARAM *( *\([^)]*\)) *) *)$/\1\2 ( \3 == \4 )/' \{\} \;
* Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operatorSzabolcs Dezsi2012-04-061-11/+11
| | | | | | Pattern used: find . -name "*.cxx" -exec sed -i 's/\( *\)\(else if\|if\) *( *\([^!()|&]*\)\.equalsAsciiL( *RTL_CONSTASCII_STRINGPARAM *( *\([^)]*\) ) *) *)$/\1\2 ( \3 == \4 )/' \{\} \;
* .xcl files don't need executable bitsMichael Stahl2012-03-231-0/+0
|
* .sce files don't need executable bitsMichael Stahl2012-03-231-0/+0
|
* .component files don't need executable bitsMichael Stahl2012-03-231-0/+0
|
* .java files don't need executable bitsMichael Stahl2012-03-232-0/+0
|
* chmod -xTor Lillqvist2012-03-212-0/+0
|
* Enable -Wnon-virtual-dtor for GCC 4.6Stephan Bergmann2012-03-142-0/+6
| | | | | | | | | | | | | | ...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.
* gbuild: get rid of realpath in gb_Foo_set_includeMatúš Kukan2012-03-101-1/+1
|
* gb_JunitTest_JunitTest takes only one argumentStephan Bergmann2012-02-202-2/+2
|
* Fix typos in commentsElton Chung2012-02-181-1/+1
|
* Remove unused code.Petr Vorel2012-02-171-15/+0
|
* possible inefficient checking for emptinessMariusz Dykierek2012-02-162-3/+3
|
* Various string function clean upStephan Bergmann2012-02-151-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* Remove unused codeElton Chung2012-02-132-18/+0
|
* Avoid Possible null pointer dereference in linguistic/source/spelldsp.hxxJulien Nabet2012-02-111-2/+2
| | | | (Thank you to Ivan and Riccardo for their suggestions)
* unusedcode.easy: Removed unused code (linguistic)Alexander Bergmann2012-02-082-57/+0
|
* Added READMEs for modules which used to be in libs-coreJosh Heidenreich2012-02-081-0/+1
|
* switch to include-based build rather than sourced-based buildNorbert Thiebaud2012-02-051-35/+2
|
* A few safe replacements of pathes->pathsJesús Corrius2012-02-011-3/+3
|
* ByteString->rtl::OStringCaolán McNamara2012-01-231-18/+19
|
* Replaced SAL_INFO with SAL_WARN were applicable.Marcel Metz2012-01-171-2/+2
|
* Replaced DBG_ERRORFILE with SAL_INFO.Marcel Metz2012-01-161-2/+2
|
* simplify CharClassCaolán McNamara2012-01-091-5/+5
| | | | | | | 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
* Removed unnecessary tools/debug.hxx includes.Marcel Metz2012-01-064-4/+0
|
* getPropertyMap can return a reference instead of a pointerCaolán McNamara2012-01-051-1/+1
|
* Removed unnecessary tools includes.Marcel Metz2012-01-051-1/+0
|
* Removed unnecessary tools includes.Marcel Metz2012-01-052-2/+0
|
* Fix for fdo43460 Part XXIII getLength() to isEmpty()Olivier Hallot2011-12-3011-38/+38
| | | | | | Part XXIII Modules linguistic
* ByteString->rtl::OStringCaolán McNamara2011-12-221-7/+6
|
* catch exception by constant referenceTakeshi Abe2011-12-205-19/+10
|
* Properly join spawned GrammarCheckingIterator thread.Stephan Bergmann2011-12-162-34/+32
| | | | | | | | 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...
* Less succes, more successStefan Knorr (astron)2011-12-081-1/+1
|
* in modules, when we have a env we are in stage gbuildBjoern Michaelsen2011-12-071-0/+1
|
* Removed unnessecary tools/table.hxx includesMarcel Metz2011-12-061-1/+0
|
* move reconfigure into gbuildBjoern Michaelsen2011-11-291-1/+1
|
* ByteString->rtl::OUStringToOStringCaolán McNamara2011-11-281-11/+10
|
* remove precompiled_xxx.hxx/cxxNorbert Thiebaud2011-11-272-63/+0
|
* remove pch from the include listNorbert Thiebaud2011-11-271-1/+0
|