History log of /trunk/ (Results 2501 - 2525 of 8532)
Revision (<<< Hide revision tags) (Show revision tags >>>)Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
bccc157201-May-2018 Don Lewis

Fix the easy cast-related errors reported by clang 6 in its default
C++14 mode.



git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1830706 13f79535-47bb-0310-9956-ff

Fix the easy cast-related errors reported by clang 6 in its default
C++14 mode.



git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1830706 13f79535-47bb-0310-9956-ffa450edef68

show more ...

0b6e06b328-Apr-2018 Matthias Seidel

Download URL1 for stax-src-1.2.0.zip was at Codehaus.org, which was shut down in 2015. This was causing the download to fail:
(500 Can't connect to dist.codehaus.org:80 (Name or service not known

Download URL1 for stax-src-1.2.0.zip was at Codehaus.org, which was shut down in 2015. This was causing the download to fail:
(500 Can't connect to dist.codehaus.org:80 (Name or service not known))

Since we always ended up downloading from SourceForge this is now default, adding a fallback at http://maven.ibiblio.org.

git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1830480 13f79535-47bb-0310-9956-ffa450edef68

show more ...

787e113028-Apr-2018 Don Lewis

Fix potential memory alignment issues on X86_64.

Clang version 4.0 and newer uses SSE instructions that require
16-byte alignment to zero memory allocated using the C++ new operator.

Fix potential memory alignment issues on X86_64.

Clang version 4.0 and newer uses SSE instructions that require
16-byte alignment to zero memory allocated using the C++ new operator.
The internal memory allocator does not understand anything larger
than 8-byte alignment. Modify it to be capable of doing 16-byte
alignment when necessary.

There is also a debug layer beneath the C++ new and delete operators
that is enabled by the --enable-debug configure option. This layer
adds 8 to the requested size of any allocations before calling the
underlying allocator, adds a known signature to the start of the
memory block, and then adds an 8 byte offset to the pointer before
returning it to the caller. The delete operator basically does the
reverse, checking for the proper signature. Modify this code so
that it adds and subtracts a 16-byte offset on X86_64 so that a
properly aligned block from the underlying allocator does not cause
new to return a misaligned pointer.

Modify set_soenv.in so that it always requests 16-byte alignment
on X86_64 so that the ABI is the same independent of the toolchain.



git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1830406 13f79535-47bb-0310-9956-ffa450edef68

show more ...

46b6f86926-Apr-2018 Matthias Seidel

Updated English dictionary (again)

git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1830277 13f79535-47bb-0310-9956-ffa450edef68

fbf4eab926-Apr-2018 Matthias Seidel

Updated English dictionary

git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1830176 13f79535-47bb-0310-9956-ffa450edef68

e99c7fc522-Apr-2018 Matthias Seidel

Remove dummy text from the Windows installer

git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1829787 13f79535-47bb-0310-9956-ffa450edef68

d1a87fe822-Apr-2018 Matthias Seidel

Fixed typos, removed whitespace

git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1829759 13f79535-47bb-0310-9956-ffa450edef68

e3393df021-Apr-2018 Don Lewis

Unbreak build on FreeBSD with clang 6.0 and newer. Clang 6 changed
the its default C++ standard from C++98 to C++14 and our old code
is not prepared for that. Avoid the problem by adding th

Unbreak build on FreeBSD with clang 6.0 and newer. Clang 6 changed
the its default C++ standard from C++98 to C++14 and our old code
is not prepared for that. Avoid the problem by adding the -std=gnu++98
compiler flag.

Add the -fstack-protector compiler flag on FreeBSD INTEL and X86_64.



git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1829757 13f79535-47bb-0310-9956-ffa450edef68

show more ...

d59d07b520-Apr-2018 Don Lewis

Work around a bug in clang versions 3.6.x and 3.7.x on 32-bit Intel.
Using -Os optimization causes clang to generate bad DWARF CFI which
is needed for stack unwinding during exception handlin

Work around a bug in clang versions 3.6.x and 3.7.x on 32-bit Intel.
Using -Os optimization causes clang to generate bad DWARF CFI which
is needed for stack unwinding during exception handling. See:
<https://llvm.org/bugs/show_bug.cgi?id=24792>
Instead of using -Os, optimize using "-O2 -fno-unroll-loops" as a
reasonably close substitute.



git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1829681 13f79535-47bb-0310-9956-ffa450edef68

show more ...

d0cb9f4d19-Apr-2018 Pedro Giffuni

Fix build with boost-1.67.

The release notes say:
____
Utility:
Breaking change: <boost/utility.hpp> header no longer includes boost::next
and boost::prior as they have been

Fix build with boost-1.67.

The release notes say:
____
Utility:
Breaking change: <boost/utility.hpp> header no longer includes boost::next
and boost::prior as they have been moved to the iterator module. Instead
include <boost/next_prior.hpp>. Other uses of <boost/utility.hpp> are
discouraged, it's better to use the header for the specific functionality
instead.

____

Obtained from: Jan Beich
FreeBSD PR: 227553


git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1829494 13f79535-47bb-0310-9956-ffa450edef68

show more ...

edae289517-Apr-2018 Don Lewis

Fix build with gcc 4.9 by tweaking optimization options for two files.
This is a workaround for:
<https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65009>



git-svn-id: https://

Fix build with gcc 4.9 by tweaking optimization options for two files.
This is a workaround for:
<https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65009>



git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1829372 13f79535-47bb-0310-9956-ffa450edef68

show more ...

c974372a16-Apr-2018 Matthias Seidel

Temporarily disable translation of NSIS for Arabic.
Minor cleanup and some German comments translated.

git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1829308 13f79535-47bb

Temporarily disable translation of NSIS for Arabic.
Minor cleanup and some German comments translated.

git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1829308 13f79535-47bb-0310-9956-ffa450edef68

show more ...

3bd2d6ae15-Apr-2018 Damjan Jovanovic

Allow the Java version suffix (eg. the 162 in 1.8.0_162) to be
3 digits long.

Patch by: me



git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1829211 13f795

Allow the Java version suffix (eg. the 162 in 1.8.0_162) to be
3 digits long.

Patch by: me



git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1829211 13f79535-47bb-0310-9956-ffa450edef68

show more ...

8cb913c415-Apr-2018 Damjan Jovanovic

Port main/jvmfwk to gbuild / Ant.

Fix the gbuild platform CPUDEFS to conform to what modules expect.

Patch by: me



git-svn-id: https://svn.apache.org/repos/asf/ope

Port main/jvmfwk to gbuild / Ant.

Fix the gbuild platform CPUDEFS to conform to what modules expect.

Patch by: me



git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1829205 13f79535-47bb-0310-9956-ffa450edef68

show more ...

31eff9ff15-Apr-2018 Damjan Jovanovic

Target our baseline Java version in the new Ant build.

Patch by: me



git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1829201 13f79535-47bb-0310-9956-ffa450ede

Target our baseline Java version in the new Ant build.

Patch by: me



git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1829201 13f79535-47bb-0310-9956-ffa450edef68

show more ...

58368a3f15-Apr-2018 Damjan Jovanovic

Improve Java detection on *nix, by also checking the immediate
subdirectories of /usr and /usr/local, where at least FreeBSD puts Java
(eg. /usr/local/openjdk8, /usr/local/openjdk7-jre). Also

Improve Java detection on *nix, by also checking the immediate
subdirectories of /usr and /usr/local, where at least FreeBSD puts Java
(eg. /usr/local/openjdk8, /usr/local/openjdk7-jre). Also simplify that
search code a bit, and eliminate an unnecessary stat() for a directory on
which it has already been called earlier.

Patch by: me



git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1829200 13f79535-47bb-0310-9956-ffa450edef68

show more ...

0ef2035014-Apr-2018 Matthias Seidel

#i74793#

Removed Ukrainian (uk) from "noMSLocaleLangs".
MSI for uk can be built without bundling en-US.

Temporarily disable translation of NSIS because of a problem in Ukrainian

#i74793#

Removed Ukrainian (uk) from "noMSLocaleLangs".
MSI for uk can be built without bundling en-US.

Temporarily disable translation of NSIS because of a problem in Ukrainian.nsh (NSIS 3.03).

git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1829124 13f79535-47bb-0310-9956-ffa450edef68

show more ...

37cc890312-Apr-2018 Matthias Seidel

Changed minimum Ant version to 1.9.1
Minor cleanup

git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1828966 13f79535-47bb-0310-9956-ffa450edef68

cede1e5b10-Apr-2018 Damjan Jovanovic

Check whether JUnit tests are present before trying to compile them.

Patch by: me



git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1828829 13f79535-47bb-0310-

Check whether JUnit tests are present before trying to compile them.

Patch by: me



git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1828829 13f79535-47bb-0310-9956-ffa450edef68

show more ...

bee6bcb909-Apr-2018 Damjan Jovanovic

Port main/ridljar to gbuild / Ant.

Generalize the Ant build a bit, to make using javamaker
more flexible, and allow arbitrary "pre-compile" actions
to be plugged in.

Patch b

Port main/ridljar to gbuild / Ant.

Generalize the Ant build a bit, to make using javamaker
more flexible, and allow arbitrary "pre-compile" actions
to be plugged in.

Patch by: me



git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1828757 13f79535-47bb-0310-9956-ffa450edef68

show more ...


main/Module_ooo.mk
main/odk/pack/gendocu/makefile.mk
main/ridljar/Ant_ridl.mk
main/ridljar/Ant_unoloader.mk
main/ridljar/Makefile
main/ridljar/Module_ridljar.mk
main/ridljar/Zip_ridl_src.mk
main/ridljar/Zip_unoloader_src.mk
main/ridljar/java/ridl/build.xml
main/ridljar/java/ridl/src/main/java/com/makefile.mk
main/ridljar/java/ridl/src/main/java/com/sun/star/lib/uno/typedesc/FieldDescription.java
main/ridljar/java/ridl/src/main/java/com/sun/star/lib/uno/typedesc/MemberDescriptionHelper.java
main/ridljar/java/ridl/src/main/java/com/sun/star/lib/uno/typedesc/MethodDescription.java
main/ridljar/java/ridl/src/main/java/com/sun/star/lib/uno/typedesc/TypeDescription.java
main/ridljar/java/ridl/src/main/java/com/sun/star/lib/uno/typeinfo/AttributeTypeInfo.java
main/ridljar/java/ridl/src/main/java/com/sun/star/lib/uno/typeinfo/ConstantTypeInfo.java
main/ridljar/java/ridl/src/main/java/com/sun/star/lib/uno/typeinfo/MemberTypeInfo.java
main/ridljar/java/ridl/src/main/java/com/sun/star/lib/uno/typeinfo/MethodTypeInfo.java
main/ridljar/java/ridl/src/main/java/com/sun/star/lib/uno/typeinfo/ParameterTypeInfo.java
main/ridljar/java/ridl/src/main/java/com/sun/star/lib/uno/typeinfo/TypeInfo.java
main/ridljar/java/ridl/src/main/java/com/sun/star/lib/util/DisposeListener.java
main/ridljar/java/ridl/src/main/java/com/sun/star/lib/util/DisposeNotifier.java
main/ridljar/java/ridl/src/main/java/com/sun/star/lib/util/WeakMap.java
main/ridljar/java/ridl/src/main/java/com/sun/star/uno/Any.java
main/ridljar/java/ridl/src/main/java/com/sun/star/uno/Enum.java
main/ridljar/java/ridl/src/main/java/com/sun/star/uno/IBridge.java
main/ridljar/java/ridl/src/main/java/com/sun/star/uno/IEnvironment.java
main/ridljar/java/ridl/src/main/java/com/sun/star/uno/IFieldDescription.java
main/ridljar/java/ridl/src/main/java/com/sun/star/uno/IMapping.java
main/ridljar/java/ridl/src/main/java/com/sun/star/uno/IMemberDescription.java
main/ridljar/java/ridl/src/main/java/com/sun/star/uno/IMethodDescription.java
main/ridljar/java/ridl/src/main/java/com/sun/star/uno/IQueryInterface.java
main/ridljar/java/ridl/src/main/java/com/sun/star/uno/ITypeDescription.java
main/ridljar/java/ridl/src/main/java/com/sun/star/uno/Type.java
main/ridljar/java/ridl/src/main/java/com/sun/star/uno/Union.java
main/ridljar/java/ridl/src/main/java/com/sun/star/uno/UnoRuntime.java
main/ridljar/java/unoloader/build.xml
main/ridljar/java/unoloader/src/main/java/com/sun/star/lib/unoloader/UnoClassLoader.java
main/ridljar/java/unoloader/src/main/java/com/sun/star/lib/unoloader/UnoLoader.java
main/ridljar/java/unoloader/src/main/java/com/sun/star/lib/unoloader/makefile.mk
main/ridljar/java/unoloader/src/main/java/com/sun/star/lib/unoloader/manifest
main/ridljar/prj/build.lst
main/ridljar/prj/d.lst
main/ridljar/prj/makefile.mk
main/ridljar/source/unoloader/delzip
main/ridljar/util/delzip
main/solenv/ant/aoo-ant.xml
main/solenv/ant/idl.xml
7e63338a08-Apr-2018 Pedro Giffuni

Initial attempt at a clang-format configuration file.

Only advisory and still not comprehensive enough to cover our Cpp coding
standard:
https://wiki.openoffice.org/wiki/Cpp_Coding_S

Initial attempt at a clang-format configuration file.

Only advisory and still not comprehensive enough to cover our Cpp coding
standard:
https://wiki.openoffice.org/wiki/Cpp_Coding_Standards


git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1828656 13f79535-47bb-0310-9956-ffa450edef68

show more ...

0ee94df008-Apr-2018 Damjan Jovanovic

We don't need dmake makefiles in main/jurt any more.

Patch by: me



git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1828644 13f79535-47bb-0310-9956-ffa450edef68

f9bad0d208-Apr-2018 Damjan Jovanovic

Pass the Windows path to Ant on Windows, as /cygdrive/c/... doesn't work.

Skip tests when JUnit is absent correctly: the OOO_JUNIT_JAR variable
isn't blank but absent.

This shou

Pass the Windows path to Ant on Windows, as /cygdrive/c/... doesn't work.

Skip tests when JUnit is absent correctly: the OOO_JUNIT_JAR variable
isn't blank but absent.

This should fix building on Windows.

Patch by: me



git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1828640 13f79535-47bb-0310-9956-ffa450edef68

show more ...

26c56e0b08-Apr-2018 Damjan Jovanovic

Add a file accidentally left out of the last commit.

Patch by: me



git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1828638 13f79535-47bb-0310-9956-ffa450edef68

41f03cd908-Apr-2018 Damjan Jovanovic

Added an Ant target type to gbuild, that can be used to call Ant to build
a deliverable. Added Ant support files that provide build infrastructure
that can be used by Java projects, including

Added an Ant target type to gbuild, that can be used to call Ant to build
a deliverable. Added Ant support files that provide build infrastructure
that can be used by Java projects, including testing with JUnit at
compile time, processing of external dependencies, using the IDL
toolchain (idlc, regmerge, javamaker), and general build support like
compiling into class files, building the JAR file and cleaning. These
features require Ant version >= 1.9.1.

Ported main/jurt to gbuild and this Ant infrastructure.

Patch by: me



git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1828636 13f79535-47bb-0310-9956-ffa450edef68

show more ...


main/Module_ooo.mk
main/Repository.mk
main/jurt/Ant_jurt.mk
main/jurt/Library_jpipe.mk
main/jurt/Library_wrapper.mk
main/jurt/Makefile
main/jurt/Module_jurt.mk
main/jurt/Zip_jurt-src.mk
main/jurt/java/jurt/build.xml
main/jurt/java/jurt/src/main/java/com/sun/star/comp/bridgefactory/BridgeFactory.java
main/jurt/java/jurt/src/main/java/com/sun/star/comp/bridgefactory/makefile.mk
main/jurt/java/jurt/src/main/java/com/sun/star/comp/connections/Acceptor.java
main/jurt/java/jurt/src/main/java/com/sun/star/comp/connections/Connector.java
main/jurt/java/jurt/src/main/java/com/sun/star/comp/connections/ConstantInstanceProvider.java
main/jurt/java/jurt/src/main/java/com/sun/star/comp/connections/Implementation.java
main/jurt/java/jurt/src/main/java/com/sun/star/comp/connections/PipedConnection.java
main/jurt/java/jurt/src/main/java/com/sun/star/comp/connections/makefile.mk
main/jurt/java/jurt/src/main/java/com/sun/star/comp/loader/FactoryHelper.java
main/jurt/java/jurt/src/main/java/com/sun/star/comp/loader/JavaLoader.java
main/jurt/java/jurt/src/main/java/com/sun/star/comp/loader/JavaLoaderFactory.java
main/jurt/java/jurt/src/main/java/com/sun/star/comp/loader/RegistrationClassFinder.java
main/jurt/java/jurt/src/main/java/com/sun/star/comp/loader/makefile.mk
main/jurt/java/jurt/src/main/java/com/sun/star/comp/servicemanager/ServiceManager.java
main/jurt/java/jurt/src/main/java/com/sun/star/comp/servicemanager/makefile.mk
main/jurt/java/jurt/src/main/java/com/sun/star/comp/urlresolver/UrlResolver.java
main/jurt/java/jurt/src/main/java/com/sun/star/comp/urlresolver/makefile.mk
main/jurt/java/jurt/src/main/java/com/sun/star/lib/connections/pipe/PipeConnection.java
main/jurt/java/jurt/src/main/java/com/sun/star/lib/connections/pipe/makefile.mk
main/jurt/java/jurt/src/main/java/com/sun/star/lib/connections/pipe/pipeAcceptor.java
main/jurt/java/jurt/src/main/java/com/sun/star/lib/connections/pipe/pipeConnector.java
main/jurt/java/jurt/src/main/java/com/sun/star/lib/connections/socket/ConnectionDescriptor.java
main/jurt/java/jurt/src/main/java/com/sun/star/lib/connections/socket/SocketConnection.java
main/jurt/java/jurt/src/main/java/com/sun/star/lib/connections/socket/makefile.mk
main/jurt/java/jurt/src/main/java/com/sun/star/lib/connections/socket/socketAcceptor.java
main/jurt/java/jurt/src/main/java/com/sun/star/lib/connections/socket/socketConnector.java
main/jurt/java/jurt/src/main/java/com/sun/star/lib/uno/Proxy.java
main/jurt/java/jurt/src/main/java/com/sun/star/lib/uno/bridges/java_remote/BridgedObject.java
main/jurt/java/jurt/src/main/java/com/sun/star/lib/uno/bridges/java_remote/ProxyFactory.java
main/jurt/java/jurt/src/main/java/com/sun/star/lib/uno/bridges/java_remote/RequestHandler.java
main/jurt/java/jurt/src/main/java/com/sun/star/lib/uno/bridges/java_remote/XConnectionInputStream_Adapter.java
main/jurt/java/jurt/src/main/java/com/sun/star/lib/uno/bridges/java_remote/XConnectionOutputStream_Adapter.java
main/jurt/java/jurt/src/main/java/com/sun/star/lib/uno/bridges/java_remote/java_remote_bridge.java
main/jurt/java/jurt/src/main/java/com/sun/star/lib/uno/bridges/java_remote/makefile.mk
main/jurt/java/jurt/src/main/java/com/sun/star/lib/uno/environments/java/java_environment.java
main/jurt/java/jurt/src/main/java/com/sun/star/lib/uno/environments/java/makefile.mk
main/jurt/java/jurt/src/main/java/com/sun/star/lib/uno/environments/remote/IProtocol.java
main/jurt/java/jurt/src/main/java/com/sun/star/lib/uno/environments/remote/IReceiver.java
main/jurt/java/jurt/src/main/java/com/sun/star/lib/uno/environments/remote/IThreadPool.java
main/jurt/java/jurt/src/main/java/com/sun/star/lib/uno/environments/remote/JavaThreadPool.java
main/jurt/java/jurt/src/main/java/com/sun/star/lib/uno/environments/remote/JavaThreadPoolFactory.java
main/jurt/java/jurt/src/main/java/com/sun/star/lib/uno/environments/remote/Job.java
main/jurt/java/jurt/src/main/java/com/sun/star/lib/uno/environments/remote/JobQueue.java
main/jurt/java/jurt/src/main/java/com/sun/star/lib/uno/environments/remote/Message.java
main/jurt/java/jurt/src/main/java/com/sun/star/lib/uno/environments/remote/NativeThreadPool.java
main/jurt/java/jurt/src/main/java/com/sun/star/lib/uno/environments/remote/ThreadId.java
main/jurt/java/jurt/src/main/java/com/sun/star/lib/uno/environments/remote/ThreadPoolManager.java
main/jurt/java/jurt/src/main/java/com/sun/star/lib/uno/environments/remote/makefile.mk
main/jurt/java/jurt/src/main/java/com/sun/star/lib/uno/environments/remote/remote_environment.java
main/jurt/java/jurt/src/main/java/com/sun/star/lib/uno/makefile.mk
main/jurt/java/jurt/src/main/java/com/sun/star/lib/uno/protocols/urp/Cache.java
main/jurt/java/jurt/src/main/java/com/sun/star/lib/uno/protocols/urp/Marshal.java
main/jurt/java/jurt/src/main/java/com/sun/star/lib/uno/protocols/urp/PendingRequests.java
main/jurt/java/jurt/src/main/java/com/sun/star/lib/uno/protocols/urp/Unmarshal.java
main/jurt/java/jurt/src/main/java/com/sun/star/lib/uno/protocols/urp/UrpMessage.java
main/jurt/java/jurt/src/main/java/com/sun/star/lib/uno/protocols/urp/makefile.mk
main/jurt/java/jurt/src/main/java/com/sun/star/lib/uno/protocols/urp/urp.java
main/jurt/java/jurt/src/main/java/com/sun/star/lib/util/AsynchronousFinalizer.java
main/jurt/java/jurt/src/main/java/com/sun/star/lib/util/NativeLibraryLoader.java
main/jurt/java/jurt/src/main/java/com/sun/star/lib/util/StringHelper.java
main/jurt/java/jurt/src/main/java/com/sun/star/lib/util/UrlToFileMapper.java
main/jurt/java/jurt/src/main/java/com/sun/star/lib/util/makefile.mk
main/jurt/java/jurt/src/main/java/com/sun/star/uno/AnyConverter.java
main/jurt/java/jurt/src/main/java/com/sun/star/uno/Ascii.java
main/jurt/java/jurt/src/main/java/com/sun/star/uno/AsciiString.java
main/jurt/java/jurt/src/main/java/com/sun/star/uno/MappingException.java
main/jurt/java/jurt/src/main/java/com/sun/star/uno/WeakReference.java
main/jurt/java/jurt/src/main/java/com/sun/star/uno/makefile.mk
main/jurt/java/jurt/src/test/java/com/sun/star/lib/uno/protocols/urp/Cache_Test.java
main/jurt/java/jurt/src/test/java/com/sun/star/lib/uno/protocols/urp/Marshaling_Test.java
main/jurt/java/jurt/src/test/java/com/sun/star/lib/uno/protocols/urp/Protocol_Test.java
main/jurt/java/jurt/src/test/java/com/sun/star/lib/uno/protocols/urp/TestBridge.java
main/jurt/java/jurt/src/test/java/com/sun/star/lib/uno/protocols/urp/TestObject.java
main/jurt/java/jurt/src/test/java/com/sun/star/lib/uno/protocols/urp/interfaces.idl
main/jurt/java/jurt/src/test/java/com/sun/star/lib/uno/protocols/urp/makefile.mk
main/jurt/prj/build.lst
main/jurt/prj/d.lst
main/odk/pack/gendocu/makefile.mk
main/solenv/ant/aoo-ant.xml
main/solenv/ant/externals.xml
main/solenv/ant/idl.xml
main/solenv/ant/manifest.empty
main/solenv/gbuild/Ant.mk
main/solenv/gbuild/TargetLocations.mk
main/solenv/gbuild/gbuild.mk

1...<<101102103104105106107108109110>>...342