summaryrefslogtreecommitdiff
path: root/codemaker
AgeCommit message (Collapse)AuthorFilesLines
2012-05-21codemaker: write version 49 (1.5) class filesMichael Stahl1-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
2012-04-29make gbuild the default assumption of build.plBjoern Michaelsen1-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
2012-04-20Don't build these command-line tools for non-desktop OSesTor Lillqvist1-0/+4
2012-04-14rename common* static libs to codemaker_* for clarity + dmake cleanupNorbert Thiebaud7-99/+10
2012-04-14gbuild conversion: codemaker moduleDavid Ostrovsky16-294/+323
2012-04-14replace APP?RPATH SDK by SDKBIN in old build systemDavid Tardon2-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.
2012-04-06Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operatorSzabolcs Dezsi2-13/+5
2012-03-29UNO BYTE is signedStephan Bergmann2-6/+2
This is hopefully a better fix for c589fa17b8f3e6ded0d1e04120781eb5d6735bc7 "Dalvik enforces byte constants being in range (-128..127)."
2012-03-28Dalvik enforces byte constants being in range (-128..127)Tor Lillqvist1-1/+4
2012-03-21idlc/README: correct nonsense added in 534b3a9b2eMichael Stahl1-2/+5
2012-03-14Enable -Wnon-virtual-dtor for GCC 4.6Stephan Bergmann1-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.
2012-03-06remove misc. unused codeMichael Meeks2-24/+0
2012-02-16Reduce verbiage slightlyTor Lillqvist2-2/+6
2012-02-06Added READMEs for modules related to URE, with content from the wikiJosh Heidenreich1-0/+2
2012-01-26Code cleanup: ( () ) replaced by (())Alexander Bergmann1-7/+7
2012-01-21Removed some unused parameters; added SAL_UNUSED_PARAMETER.Stephan Bergmann2-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.
2012-01-03Leak comprehensive type descriptions to avoid problems at exit.Stephan Bergmann1-25/+20
2012-01-02tabs -> spacesStephan Bergmann1-60/+60
2012-01-02Temporary hack around cppu_detail_getCppuType variants violating ODR.Stephan Bergmann1-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.
2011-12-22callcatcher: remove unused typeToPrefixCaolán McNamara2-27/+0
2011-12-13Fix for fdo43460 Part VI getLength() to isEmpty()Olivier Hallot7-35/+35
Part VI Module codemaker
2011-11-27remove precompiled_xxx.hxx/cxxNorbert Thiebaud2-63/+0
2011-11-27remove include of pch header in codemakerNorbert Thiebaud20-38/+0
2011-11-27remove PCH support in dmake-moduleNorbert Thiebaud1-7/+0
2011-11-02Make .hpp/.hdl more robust against accidental include of .hdl instead of .hpp.Stephan Bergmann2-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.
2011-10-18Some fixes for "clang version 3.1 (trunk 142234)" (with --enable-werror, on ↵Stephan Bergmann1-8/+0
Linux x86_64).
2011-10-07cppcheck scope reduction in codemake/... cpputype.cxxPierre-André Jacquod1-3/+2
2011-09-27Removed uses of rtl::O[U]String[Buffer]::operator sal_{char|Unicode} const *().Stephan Bergmann1-14/+14
2011-09-22just silence the auto_ptr deprecations in isolationCaolán McNamara1-1/+37
2011-08-21Rename List -> OStringListJoseph Powers1-5/+5
I also renamed the varable from list to stringlist.
2011-07-03callcatcher: unused codeCaolán McNamara2-21/+0
2011-07-03callcatcher: unused getExtraInputFileCaolán McNamara2-13/+0
2011-06-30callcatcher: unused writeU1Caolán McNamara1-5/+0
2011-06-18ause130: #i117218# change .idl handling to gnu makeHans-Joachim Lankenau1-1/+1
2011-06-13No point building build-time executables for iOSTor Lillqvist2-0/+12
2011-06-03Drop %_EXT% which was always emptyTor Lillqvist1-11/+11
2011-06-01Interfaces are recursive into themselvesCaolán McNamara1-15/+48
2011-06-01add polymorphic supportCaolán McNamara1-27/+55
2011-06-01use rtl_Instance for the auto-generated local staticsCaolán McNamara3-47/+91
2011-05-12remove stray semicolonDavid Tardon1-1/+1
2011-04-18Remove OS/2 support.Francois Tigeot4-13/+3
2011-03-23Merge commit 'ooo/DEV300_m103'Jan Holesovsky2-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
2011-03-15move cppumaker test to cppuCaolán McNamara5-1398/+0
2011-03-15fix deps for testDavid Tardon1-1/+1
2011-03-15EasyHacks: Reanimated tests in ure/codemakerWilhelm Pflueger4-6/+8
2011-03-02Remove "using namespace ::rtl"Julien Nabet7-10/+19
2011-02-24remove empty TESTSHL2LIBCaolán McNamara1-1/+1
2011-02-24jsc340: i114847: fix nameJuergen Schmidt2-4/+20
2011-02-03move codemaker module to the boost unordered containersFridrich Strba4-30/+8
2011-01-29Remove double line spacing and correct indentationThomas Arnhold2-45/+2