summaryrefslogtreecommitdiffstats
path: root/codemaker
Commit message (Collapse)AuthorAgeFilesLines
* Keep null service manager throw a DeploymentExceptionStephan Bergmann2012-09-171-3/+4
| | | | | | | ...rather than a general RuntimeException, for consistency with existing service ctor code. Change-Id: Ia9ac14a1b5bcecb24394e7b9cade369f3f9303f0
* Require XComponentContext.getServiceManager to throw instead of returning nullStephan Bergmann2012-09-175-105/+32
| | | | | | | | | | | This is such a fatal error that there is probably no point in trying to handle it, so allow to simplify client code by removing the requirement to check for a null return value. Simplified some client code accordingly (modules configmgr and ure, and the code generated by cppumaker and javamaker). Change-Id: I51c0b270ec73409374f7439a47ee061407a46e31
* Add note about terminologyTor Lillqvist2012-08-301-0/+9
| | | | Change-Id: Iecbd3d88e963222e9bf44412fc84245edb6659dc
* udkapi, offapi: do not use #include "foo":Michael Stahl2012-07-302-8/+8
| | | | | | | | | | Evidently on Windows, the newfangled ucpp handles #include "foo" differently from #include <foo> and treats it as a relative path, while the angle brackets always result in absolute paths. Since relative paths result in infinite rebuilds if make is invoked in a different directory, don't use #include "foo" in IDL files. Change-Id: Iedcda3a4be5542389a0be086f14541cda8dc5323
* re-base on ALv2 code.Michael Meeks2012-06-1241-966/+597
|
* XInterfaceTypeDescription missing from isBootstrapTypeStephan Bergmann2012-06-071-0/+1
| | | | | | | ...it is base of XInterfaceTypeDescription2 (included in isBootstrapType), which ultimately caused uno-skeletonmaker to crash. Change-Id: I17421f58efd9edd4112532a3221125865cc5560e
* removed dead codeTakeshi Abe2012-06-061-29/+0
| | | | Change-Id: I02e535f0a0e55446e5a29297c2d05b1503805e71
* codemaker: write version 49 (1.5) class filesMichael Stahl2012-05-211-1/+1
| | | | | | | | | | | | | | | | | The trick of writing generic types into class files of versions < 49 does no longer work with javac from OpenJDK 7: /comphelper/qa/complex/comphelper/Map.java:154: error: type Pair does not take parameters Pair< ?, ? >[] initialMappings = new Pair< ?, ? >[ _keys.length ]; There appears to be a related JDK bug for this, at some time javac had an undocumented option to produce similar class files that are also rejected now, this has been closed as "Not a Defect": http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=7078419 Change-Id: I8a504f6cbb3bb58cd914aebb88637cc6feb0bd48
* 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
* Don't build these command-line tools for non-desktop OSesTor Lillqvist2012-04-201-0/+4
|
* rename common* static libs to codemaker_* for clarity + dmake cleanupNorbert Thiebaud2012-04-147-99/+10
|
* gbuild conversion: codemaker moduleDavid Ostrovsky2012-04-1416-294/+323
|
* replace APP?RPATH SDK by SDKBIN in old build systemDavid Tardon2012-04-142-2/+2
| | | | | | Commit 0c80ad06fd96a4fec062a7edfff12bb65ef204b4 broke MacOS X builds because of this discrepancy. It would be easy to accept both, but I think it is better to be consistent with gbuild.
* Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operatorSzabolcs Dezsi2012-04-062-13/+5
|
* UNO BYTE is signedStephan Bergmann2012-03-292-6/+2
| | | | | This is hopefully a better fix for c589fa17b8f3e6ded0d1e04120781eb5d6735bc7 "Dalvik enforces byte constants being in range (-128..127)."
* Dalvik enforces byte constants being in range (-128..127)Tor Lillqvist2012-03-281-1/+4
|
* idlc/README: correct nonsense added in 534b3a9b2eMichael Stahl2012-03-211-2/+5
|
* Enable -Wnon-virtual-dtor for GCC 4.6Stephan Bergmann2012-03-141-2/+7
| | | | | | | | | | | | | | ...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.
* remove misc. unused codeMichael Meeks2012-03-062-24/+0
|
* Reduce verbiage slightlyTor Lillqvist2012-02-162-2/+6
|
* Added READMEs for modules related to URE, with content from the wikiJosh Heidenreich2012-02-061-0/+2
|
* Code cleanup: ( () ) replaced by (())Alexander Bergmann2012-01-261-7/+7
|
* Removed some unused parameters; added SAL_UNUSED_PARAMETER.Stephan Bergmann2012-01-212-9/+12
| | | | | | | | | SAL_UNUSED_PARAMETER (expanding to __attribute__ ((unused)) for GCC) is used to annotate legitimately unused parameters, so that static analysis tools can tell legitimately unused parameters from truly unnecessary ones. To that end, some patches for external modules are also added, that are only applied when compiling with GCC and add necessary __attribute__ ((unused)) in headers.
* Leak comprehensive type descriptions to avoid problems at exit.Stephan Bergmann2012-01-031-25/+20
|
* tabs -> spacesStephan Bergmann2012-01-021-60/+60
|
* Temporary hack around cppu_detail_getCppuType variants violating ODR.Stephan Bergmann2012-01-021-8/+83
| | | | | | | | | Which causes cppuhelper to pick wrong variant from other library, now that its own symbols are no longer reduced to private on Mac OS X. As a temporary hack, emit cppu_detail_getCppuType for the relevant types always as fully comprehensive; should be revisited when improving types.rdb format (routinely generating C++ information for certain UNO types into a dedicated library?). Requires a fix to xmlreader and a fix to forms that looks like a Mac OS X GCC bug.
* callcatcher: remove unused typeToPrefixCaolán McNamara2011-12-222-27/+0
|
* Fix for fdo43460 Part VI getLength() to isEmpty()Olivier Hallot2011-12-137-35/+35
| | | | | | Part VI Module codemaker
* remove precompiled_xxx.hxx/cxxNorbert Thiebaud2011-11-272-63/+0
|
* remove include of pch header in codemakerNorbert Thiebaud2011-11-2720-38/+0
|
* remove PCH support in dmake-moduleNorbert Thiebaud2011-11-271-7/+0
|
* Make .hpp/.hdl more robust against accidental include of .hdl instead of .hpp.Stephan Bergmann2011-11-022-125/+61
| | | | | | .hdl failed to declare the inline cppu_detail_getUnoType functions defined in .hpp, which if client code only includes .hdl instead of .hpp could lead to runtime failures, now leads to compiler warnings.
* Some fixes for "clang version 3.1 (trunk 142234)" (with --enable-werror, on ↵Stephan Bergmann2011-10-181-8/+0
| | | | Linux x86_64).
* cppcheck scope reduction in codemake/... cpputype.cxxPierre-André Jacquod2011-10-071-3/+2
|
* Removed uses of rtl::O[U]String[Buffer]::operator sal_{char|Unicode} const *().Stephan Bergmann2011-09-271-14/+14
|
* just silence the auto_ptr deprecations in isolationCaolán McNamara2011-09-221-1/+37
|
* Rename List -> OStringListJoseph Powers2011-08-211-5/+5
| | | | I also renamed the varable from list to stringlist.
* callcatcher: unused codeCaolán McNamara2011-07-032-21/+0
|
* callcatcher: unused getExtraInputFileCaolán McNamara2011-07-032-13/+0
|
* callcatcher: unused writeU1Caolán McNamara2011-06-301-5/+0
|
* ause130: #i117218# change .idl handling to gnu makeHans-Joachim Lankenau2011-06-181-1/+1
|
* No point building build-time executables for iOSTor Lillqvist2011-06-132-0/+12
|
* Drop %_EXT% which was always emptyTor Lillqvist2011-06-031-11/+11
|
* Interfaces are recursive into themselvesCaolán McNamara2011-06-011-15/+48
|
* add polymorphic supportCaolán McNamara2011-06-011-27/+55
|
* use rtl_Instance for the auto-generated local staticsCaolán McNamara2011-06-013-47/+91
|
* remove stray semicolonDavid Tardon2011-05-121-1/+1
|
* Remove OS/2 support.Francois Tigeot2011-04-184-13/+3
|
* Merge commit 'ooo/DEV300_m103'Jan Holesovsky2011-03-232-10/+26
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: codemaker/source/bonobowrappermaker/corbaoptions.cxx codemaker/source/cppumaker/cppuoptions.cxx codemaker/source/cunomaker/cunooptions.cxx codemaker/source/idlmaker/idloptions.cxx codemaker/source/javamaker/javaoptions.cxx cppu/source/typelib/typelib.cxx idlc/source/options.cxx offapi/com/sun/star/util/PathSubstitution.idl offapi/drafts/com/sun/star/form/ListEntryEvent.idl offapi/drafts/com/sun/star/form/XBindableValue.idl offapi/drafts/com/sun/star/form/XListEntryListener.idl offapi/drafts/com/sun/star/form/XListEntrySink.idl offapi/drafts/com/sun/star/form/XListEntrySource.idl offapi/drafts/com/sun/star/form/XValueBinding.idl registry/tools/checksingleton.cxx registry/tools/options.hxx registry/tools/regcompare.cxx registry/tools/regmerge.cxx sal/cppunittester/cppunittester.cxx sal/osl/unx/socket.c sal/osl/w32/diagnose.c sal/prj/d.lst sal/rtl/source/alloc_fini.cxx sal/rtl/source/alloc_global.c sal/rtl/source/makefile.mk
| * jsc340: i114847: fix nameJuergen Schmidt2011-02-242-4/+20
| |