summaryrefslogtreecommitdiffstats
path: root/lotuswordpro
Commit message (Collapse)AuthorAgeFilesLines
* Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operatorSzabolcs Dezsi2012-04-061-7/+6
|
* Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operatorSzabolcs Dezsi2012-04-061-7/+7
| | | | | | Pattern used: find . -name "*.cxx" -exec sed -i 's/\( *\)\(else if\|if\) *( *\([^!()|&]*\)\.equalsAsciiL( *RTL_CONSTASCII_STRINGPARAM *( *\([^)]*\)) *) *)$/\1\2 ( \3 == \4 )/' \{\} \;
* always pass --headless to cppunitsLuboš Luňák2012-04-021-1/+0
| | | | | | They should not need any actual UI anyway, and most of them already pass the option manually. http://lists.freedesktop.org/archives/libreoffice/2012-March/029109.html
* callcatcher: update listCaolán McNamara2012-03-071-0/+0
|
* Avoid temporary rtl::OUStringJulien Nabet2012-03-031-8/+8
|
* add a more extensive lotuswordpro sampleCaolán McNamara2012-03-021-0/+0
|
* Get rid of size() == 0Elton Chung2012-02-191-1/+1
|
* WaE: uninitialized pCellCaolán McNamara2012-02-171-1/+1
|
* WaE: unreachable codeTor Lillqvist2012-02-131-1/+0
|
* fdo#39491 -I$(OUTDIR)/inc is set in SOLARINCMatúš Kukan2012-02-102-2/+0
|
* Added and improved READMEs for modules which used to be in filterJosh Heidenreich2012-02-081-0/+1
|
* switch to include-based build rather than sourced-based buildNorbert Thiebaud2012-02-051-35/+2
|
* Use the right defineFridrich Štrba2012-01-261-2/+2
|
* WaE: deleting object of abstract class type with non-virtual destructorDavid Tardon2012-01-152-0/+5
|
* these are not old component files anymoreMatúš Kukan2012-01-151-5/+2
|
* Removed unnecessary tools includes.Marcel Metz2012-01-051-1/+0
|
* Fix for fdo43460 Part XXIV getLength() to isEmpty()Olivier Hallot2011-12-3061-166/+166
| | | | | | Part XXIV Modules lotuswordpro
* Removed extra semicolonsJesse2011-12-151-1/+1
|
* configmgr.component is no longer an old one.Stephan Bergmann2011-12-141-2/+2
|
* in modules, when we have a env we are in stage gbuildBjoern Michaelsen2011-12-071-0/+1
|
* normalize Red Hat, Inc. spellings, and bump to latest templateCaolán McNamara2011-12-067-41/+41
|
* move reconfigure into gbuildBjoern Michaelsen2011-11-291-1/+1
|
* make gbuild makefiles run independant of pwd againBjoern Michaelsen2011-11-251-1/+1
|
* gsl_getSystemTextEncoding -> osl_getThreadTextEncodingDavid Tardon2011-11-254-5/+5
|
* WaE: uninitialized valueCaolán McNamara2011-11-241-1/+1
|
* WaE: uninitialized valueCaolán McNamara2011-11-241-1/+1
|
* tweak gbuild standart Makefile to allow partial build in unsourced envNorbert Thiebaud2011-11-161-4/+4
| | | | | This allow to run make in a module wihtout the need to source Env.Host.sh.
* Heavily simplified utl::ConfigManager.Stephan Bergmann2011-11-112-1/+8
|
* Make .component files directly usable within UNO_SERVICES.Stephan Bergmann2011-11-113-42/+2
| | | | | | | | | | | * solenv/bin/createcomponent.xslt simply surrounds it output by <components>. * solenv/gbuild/CppunitTest.mk got new functions gb_CppunitTest_add[_old]_component[s] (like their gb_RdbTarget_ predecessors). * This obsoleted current uses of solenv/gbuild/RdbTarget.mk, which also does not work currently, as it catenates the input component files instead of passing them through packcomponents.xslt (which now takes care about the surrounding <components> in the input). In the future, it will likely be combined with the recently added solenv/gbuild/ComponentsTarget.mk.
* cppcheck fix : 'operator=' should check for assignment to selfwJulien Nabet2011-10-172-11/+14
|
* split bootstrapfixture and move test-filters class for sot testCaolán McNamara2011-10-152-5/+9
| | | | | | | sot is below vcl, but is a filters test, we can split bootstrapfixture into a vcl needing bit and and non-vcl bit and filters test api can be standalone and combined with whichever bit in order to form pre and post vcl filters test
* test fix: use setUp and tearDown not constructors to init LibreOfficeMichael Meeks2011-10-051-3/+6
| | | | | | It turns out the constructors are all run back-to-back one per filter, and we need to init and de-init in a sensible order to make multiple tests that otherwise share the ContentBroker work properly.
* simplfy dmake to gbuild bridgefileBjoern Michaelsen2011-10-051-40/+1
|
* adapt lotuswordpro unittests to separate RdbTarget makefile requirementBjoern Michaelsen2011-10-043-6/+40
|
* no need to continue, delete NULL is safeCaolán McNamara2011-10-041-4/+2
|
* SetDfltFont doesn't do anythingCaolán McNamara2011-10-042-32/+0
|
* valgrind: fix some leaksCaolán McNamara2011-10-028-45/+40
|
* merge filters-test codeCaolán McNamara2011-09-303-97/+15
|
* ensure m_pOwnerRow is NULLCaolán McNamara2011-09-231-0/+1
|
* cppcheck: don't dereference NULL pRowCaolán McNamara2011-09-231-3/+8
|
* just silence the auto_ptr deprecations in isolationCaolán McNamara2011-09-224-0/+18
|
* Simplified setting headless mode for smoke-/subsequenttetss.Stephan Bergmann2011-09-161-1/+0
| | | | | | Both C++ and Java OfficeConnection code now always pass --headless, so no need for SAL_USE_VCLPLUGIN=svp etc. any more. Only some C++ unit tests that link against vcl still need an explicit --headless.
* sb140: #i113503# mixing system CppUnit and OOo STLport does not work, backed ↵Stephan Bergmann2011-09-121-1/+7
| | | | | | out a6913c9677c2 For LibO, that just means replacing sal/cppunit.h with sal/precppunit.hxx.
* Some cppcheck cleaningJulien Nabet2011-09-093-4/+4
|
* regenerate listCaolán McNamara2011-08-306-45/+0
|
* callcatcher: chop, hack, slayCaolán McNamara2011-08-3039-1018/+0
|
* ditch a few moreCaolán McNamara2011-08-307-415/+0
|
* use standard copy-ctor signatures, assignments, etcCaolán McNamara2011-08-2938-1378/+14
|
* callcatcher: drop various unused methodsCaolán McNamara2011-08-296-205/+0
|
* valgrind: various unused codeCaolán McNamara2011-08-296-222/+0
|