summaryrefslogtreecommitdiff
path: root/lotuswordpro
AgeCommit message (Collapse)AuthorFilesLines
2012-04-08rename gb_CppunitTest_uses_ureDavid Tardon1-1/+1
2012-04-08compile- and run-time use of UNO must be splitDavid Tardon1-0/+2
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-08clean upDavid Tardon1-8/+0
2012-04-08simplify use of configuration from unit testsDavid Tardon1-3/+1
2012-04-08always use --protector for UNO testsDavid Tardon1-1/+0
2012-04-08drop uses_ureDavid Tardon1-2/+0
2012-04-08let use_api handle the use of type rdbs at runtimeDavid Tardon1-4/+0
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-08gbuild: "use" vs. "add":Michael Stahl2-6/+6
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 Dezsi1-7/+6
2012-04-06Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operatorSzabolcs Dezsi1-7/+7
Pattern used: find . -name "*.cxx" -exec sed -i 's/\( *\)\(else if\|if\) *( *\([^!()|&]*\)\.equalsAsciiL( *RTL_CONSTASCII_STRINGPARAM *( *\([^)]*\)) *) *)$/\1\2 ( \3 == \4 )/' \{\} \;
2012-04-02always pass --headless to cppunitsLuboš Luňák1-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
2012-03-07callcatcher: update listCaolán McNamara1-0/+0
2012-03-03Avoid temporary rtl::OUStringJulien Nabet1-8/+8
2012-03-02add a more extensive lotuswordpro sampleCaolán McNamara1-0/+0
2012-02-19Get rid of size() == 0Elton Chung1-1/+1
2012-02-17WaE: uninitialized pCellCaolán McNamara1-1/+1
2012-02-13WaE: unreachable codeTor Lillqvist1-1/+0
2012-02-10fdo#39491 -I$(OUTDIR)/inc is set in SOLARINCMatúš Kukan2-2/+0
2012-02-08Added and improved READMEs for modules which used to be in filterJosh Heidenreich1-0/+1
2012-02-05switch to include-based build rather than sourced-based buildNorbert Thiebaud1-35/+2
2012-01-26Use the right defineFridrich Štrba1-2/+2
2012-01-15WaE: deleting object of abstract class type with non-virtual destructorDavid Tardon2-0/+5
2012-01-15these are not old component files anymoreMatúš Kukan1-5/+2
2012-01-05Removed unnecessary tools includes.Marcel Metz1-1/+0
2011-12-30Fix for fdo43460 Part XXIV getLength() to isEmpty()Olivier Hallot61-166/+166
Part XXIV Modules lotuswordpro
2011-12-15Removed extra semicolonsJesse1-1/+1
2011-12-14configmgr.component is no longer an old one.Stephan Bergmann1-2/+2
2011-12-07in modules, when we have a env we are in stage gbuildBjoern Michaelsen1-0/+1
2011-12-06normalize Red Hat, Inc. spellings, and bump to latest templateCaolán McNamara7-41/+41
2011-11-29move reconfigure into gbuildBjoern Michaelsen1-1/+1
2011-11-25make gbuild makefiles run independant of pwd againBjoern Michaelsen1-1/+1
2011-11-25gsl_getSystemTextEncoding -> osl_getThreadTextEncodingDavid Tardon4-5/+5
2011-11-24WaE: uninitialized valueCaolán McNamara1-1/+1
2011-11-24WaE: uninitialized valueCaolán McNamara1-1/+1
2011-11-16tweak gbuild standart Makefile to allow partial build in unsourced envNorbert Thiebaud1-4/+4
This allow to run make in a module wihtout the need to source Env.Host.sh.
2011-11-11Heavily simplified utl::ConfigManager.Stephan Bergmann2-1/+8
2011-11-11Make .component files directly usable within UNO_SERVICES.Stephan Bergmann3-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.
2011-10-17cppcheck fix : 'operator=' should check for assignment to selfwJulien Nabet2-11/+14
2011-10-15split bootstrapfixture and move test-filters class for sot testCaolán McNamara2-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
2011-10-05test fix: use setUp and tearDown not constructors to init LibreOfficeMichael Meeks1-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.
2011-10-05simplfy dmake to gbuild bridgefileBjoern Michaelsen1-40/+1
2011-10-04adapt lotuswordpro unittests to separate RdbTarget makefile requirementBjoern Michaelsen3-6/+40
2011-10-04no need to continue, delete NULL is safeCaolán McNamara1-4/+2
2011-10-04SetDfltFont doesn't do anythingCaolán McNamara2-32/+0
2011-10-02valgrind: fix some leaksCaolán McNamara8-45/+40
2011-09-30merge filters-test codeCaolán McNamara3-97/+15
2011-09-23ensure m_pOwnerRow is NULLCaolán McNamara1-0/+1
2011-09-23cppcheck: don't dereference NULL pRowCaolán McNamara1-3/+8
2011-09-22just silence the auto_ptr deprecations in isolationCaolán McNamara4-0/+18
2011-09-16Simplified setting headless mode for smoke-/subsequenttetss.Stephan Bergmann1-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.