Commit Graph

84 Commits

Author SHA1 Message Date
c0415d5f1e java: remove unnecessary constructor declarations
in the absence of any other constructors, the compiler will automatically
generate a public no-arg constructor

Change-Id: I70eca507cd8e16e33580b3398d41d70690bc2909
2014-08-20 12:12:15 +02:00
56ef5533fc java: classes in java.lang package do not need to be fully qualified
Change-Id: I7b18f62336c3a8ca4c538b30ce04c99f202a4756
2014-08-19 14:57:16 +02:00
0477e6c39b java: add @Override annotation to overriding methods
Change-Id: I086964c6f6ce52c60c52b6dbc445d3c21d22c80a
2014-08-12 09:41:28 +02:00
2ada2b3375 typo: dependend -> dependent 2014-04-14 12:31:58 +02:00
fd95c8950c Fix signature of main function
Change-Id: Id6a4968b15445f04e788eaa6ca950707d5311e66
2014-01-21 12:25:20 +01:00
23a87a8622 Remove some obsolete makefile.mk
Change-Id: I47f1a72fac3e6678b5dfe880f2f189ffc436333b
2013-04-29 13:05:51 +02:00
5051209534 Adapt SDK to usage of msvcrtd for Windows --enable-dbgutil
* Re-use existing settings/dk.mk to tunnel ENABLE_DEBUG into the SDK.  Turns out
  this was explicitly included in ~all examples Makefiles, but only after
  settings.mk where it is now used, so include it in settings.mk now and dropped
  it from all the exmaples Makefiles.

* The old settings.mk was apparently confused with using /MT ("link with
  LIBCMT.LIB") on cl command line and /MD ("link with MSVCRT.LIB") on link
  command line (where it was ignored), and you apparently can't pass both
  together to cl, so I settled on /MD (resp. /MDd) now and dropped /MT (resp.
  /MTd).  No idea if that is exactly right, however.

* Introduced client-facing LIBO_SDK_LDFLAGS_STDLIBS that covers kernel32.lib and
  msvcrt.lib vs. msvcrtd.lib on Windows.  Adapted examples Makefiles and
  /ure/source/uretest/Makefile accordingly.  Some examples Makefiles
  additionally use msvcprt.lib, no idea whether that still needs to be
  addressed.

Change-Id: Ia8d9d177e415abfbaf6f9fa6239f0ef9998868be
2013-04-19 14:02:18 +02:00
8d87758d65 Java cleanup, remove the rest of the unnecessary casts
Change-Id: Ia61d250f6b3711abc29569c5ece38a6f87e38daa
Reviewed-on: https://gerrit.libreoffice.org/3432
Reviewed-by: Fridrich Strba <fridrich@documentfoundation.org>
Tested-by: Fridrich Strba <fridrich@documentfoundation.org>
2013-04-19 07:52:08 +00:00
368210926b remove -dylib_file mappings that are not needed anymore
XCode 2.5 (i.e. Mac OSX 10.4 & 10.5) couldn't find the libraries
without explicit mapping, but as baseline is now 10.6, this
wrapping is no longer necessary

Change-Id: I225fc47b9ea4b1fb2b13ba575605cbdebc014fd8
Reviewed-on: https://gerrit.libreoffice.org/3192
Tested-by: LibreOffice gerrit bot <gerrit@libreoffice.org>
Reviewed-by: Michael Stahl <mstahl@redhat.com>
2013-04-04 17:46:46 +00:00
4ec9f5d768 Remove RTL_CONSTASCII_(U)STRINGPARAM in odk(Developersguide)
Change-Id: Ic2a2cf04a691f628e862e81579d3d55d261fc492
2013-03-31 16:49:53 +02:00
8b27d78b4a automated removal of RTL_CONSTASCII_USTRINGPARAM for quoted OUStrings
Done with a perl regex:

s/OUString\s*\(\s*RTL_CONSTASCII_USTRINGPARAM\s*\((\s*"[^")]*?"\s*)\)\s*\)/OUString\($1\)/gms

Change-Id: Idf28320817cdcbea6d0f7ec06a9bf51bd2c3b3ec
Reviewed-on: https://gerrit.libreoffice.org/2832
Reviewed-by: Thomas Arnhold <thomas@arnhold.org>
Tested-by: Thomas Arnhold <thomas@arnhold.org>
2013-03-19 09:00:26 +00:00
66e5cbc55a Fix typo "sucessfully" -> "successfully"
Change-Id: I01c85e4d3853c44fa05acc3019bc35c56c4f655e
2013-02-23 15:42:54 +01:00
bb121c864c fdo#46808, Convert frame::Desktop to new style service.
I had to drop XEventBroadcaster from the merged interface
because it introduced method name conflicts (addEventListener).

Shouldn't be an issue since it was scheduled to be dropped anyhow,
and the service implementation still implements it, so existing clients
will be fine.

I dropped the interface XPropertySet from the combined IDL because nobody
seems to be using it, and it's primary purpose appears to be to set weird
flags.

I dropped the optional interfaces
   XStatusIndicatorFactory
   XDispatchInformationProvider
from the combined IDL because the service does not implement them, and
nobody seems to be using them. I suspect they were mistakenly copied
from XFrame.

I also did not convert the Title, UserDefinedAttributes and LayoutManager
properties to attributes, again because no-one is using them.

Change-Id: I678a00006ed2cca2d6c37c4e39465811442c33af
2012-12-21 10:57:09 +02:00
67a624f47f Fix SDK example
Change-Id: Ide65bcf203f78d1e8d3286f4ee19846a357fb364
2012-12-10 18:23:28 +01:00
6bf09ecf1d Java cleanup, remove unnecessary imports
I guess I missed some last time :-)

Change-Id: I164a8baa07850f783b8cdf2e7f3eeaac53a3d29b
2012-09-10 23:43:38 +02:00
b6db3e3acc re-base on ALv2 code.
Change-Id: Ice06e639213aeb6f7f23cbf4634947dd25613db1
2012-06-21 13:11:06 +01:00
343bd286c9 targeted string re-work
Change-Id: Icdf89cd23f34b9d599512414b14907c9ac67cffb
2012-06-02 12:58:04 -05:00
aab14cb9fb fix prefix of command line switches (-- instead of -) 2012-01-11 19:25:45 +01:00
11cdc4ccc4 Merge commit 'ooo/DEV300_m103'
Conflicts:
	odk/examples/DevelopersGuide/Components/CppComponent/service1_impl.cxx
	odk/examples/DevelopersGuide/Database/DriverSkeleton/SServices.cxx
	odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/FlatXmlFilterDetection/fdcomp.cxx
	odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/FlatXmlFilter_cpp/FlatXml.cxx
	odk/examples/cpp/complextoolbarcontrols/exports.cxx
	odk/examples/cpp/counter/countermain.cxx
	odk/examples/cpp/remoteclient/remoteclient.cxx
	odk/settings/settings.mk
2011-03-23 16:59:36 +01:00
3b2efb2043 Remove "using namespace ::rtl" 2011-03-02 20:36:58 +01:00
8e8fc2abfa jsc340: i114609: adapt examples to work with the URE and use the passive registration 2011-03-01 09:48:57 +01:00
471c9c37fe jsc340: i114609: adapt examples to work with the URE and use the passive registration 2011-03-01 07:41:02 +01:00
01f92dfffd jsc340: i114609: adapt examples to work with the URE and use the passive registration 2011-02-28 14:10:02 +01:00
1628005298 Trying to remove the stlport mention from the code 2011-02-09 16:20:25 +01:00
1d922012be RTL_CONSTASCII_USTRINGPARAM in sdk 2 2010-11-27 09:28:39 +01:00
7ccc9aaef5 RTL_CONSTASCII_USTRINGPARAM in sdk 1 2010-11-27 09:10:56 +01:00
e9a59da46a Add vim/emacs modelines to all source files
Fixes #fdo30794
Based on bin/add-modelines script (originally posted in mail
1286706307.1871.1399280959@webmail.messagingengine.com)

Signed-off-by: Sebastian Spaeth <Sebastian@SSpaeth.de>
2010-10-13 10:58:04 +02:00
1296914c84 changefileheader2: #i109125#: change source file copyright notice from Sun Microsystems to Oracle; remove CVS style keywords (RCSfile, Revision) 2010-02-12 15:01:35 +01:00
8970d1108a #i160584# use SAL_IMPLEMENT_MAIN macro 2009-11-05 12:18:43 +00:00
3da9567ea9 INTEGRATION: CWS jsc21 (1.4.92); FILE MERGED
2008/07/07 11:37:32 jsc 1.4.92.3: #i88797# adapted
2008/06/27 08:49:53 jsc 1.4.92.2: #i90032# adapt link flags and linking for MacOS
2008/05/21 14:57:30 jsc 1.4.92.1: #i88797# adapted to new structure
2008-07-11 13:25:13 +00:00
e149e88336 INTEGRATION: CWS jsc21 (1.5.152); FILE MERGED
2008/06/27 08:49:53 jsc 1.5.152.3: #i90032# adapt link flags and linking for MacOS
2008/06/20 11:43:50 jsc 1.5.152.2: #i88797# adapted
2008/05/21 14:57:30 jsc 1.5.152.1: #i88797# adapted to new structure
2008-07-11 13:25:00 +00:00
bb3bbb20a6 INTEGRATION: CWS jsc21 (1.7.198); FILE MERGED
2008/06/27 08:49:53 jsc 1.7.198.2: #i90032# adapt link flags and linking for MacOS
2008/05/23 11:55:46 jsc 1.7.198.1: #i88797# change OFFICE_TYPE_LIBRARY to URE_TYPES and OFFICE_TYPES
2008-07-11 13:24:47 +00:00
70592b243e INTEGRATION: CWS jsc21 (1.6.92); FILE MERGED
2008/05/21 15:03:04 jsc 1.6.92.1: #i88797# adapted to new structure
2008-07-11 13:24:32 +00:00
aedcd6c5a6 INTEGRATION: CWS jsc21 (1.7.198); FILE MERGED
2008/06/27 08:49:52 jsc 1.7.198.2: #i90032# adapt link flags and linking for MacOS
2008/05/21 15:03:04 jsc 1.7.198.1: #i88797# adapted to new structure
2008-07-11 13:24:18 +00:00
fbe27c3efe INTEGRATION: CWS changefileheader (1.7.76); FILE MERGED
2008/03/31 15:52:49 rt 1.7.76.1: #i87441# Change license header to LPGL v3.
2008-04-10 15:47:16 +00:00
4dc2795bce INTEGRATION: CWS jsc20 (1.3.362); FILE MERGED
2008/01/03 12:07:46 jsc 1.3.362.1: #i83166# correct typo for finalizer method
2008-01-28 15:30:09 +00:00
ede5028f73 INTEGRATION: CWS ause074 (1.6.2); FILE MERGED
2007/02/02 10:27:24 hjs 1.6.2.1: #i74085# avoid useless shell calls
2007-02-06 12:22:20 +00:00
fb518b5b17 INTEGRATION: CWS ause069 (1.5.86); FILE MERGED
2006/10/18 17:12:01 hjs 1.5.86.1: #i70359# remove forced shell calls
2007-01-25 11:27:43 +00:00
dbb268b4b9 INTEGRATION: CWS jsc14 (1.3.14); FILE MERGED
2006/10/25 08:52:28 jsc 1.3.14.1: #i70636# remove auto generated precompiled header include
2006-11-06 14:04:56 +00:00
f0db63e81e INTEGRATION: CWS jsc14 (1.4.14); FILE MERGED
2006/10/25 08:52:27 jsc 1.4.14.1: #i70636# remove auto generated precompiled header include
2006-11-06 14:03:46 +00:00
b9c876171d INTEGRATION: CWS jsc14 (1.5.14); FILE MERGED
2006/10/25 08:52:27 jsc 1.5.14.1: #i70636# remove auto generated precompiled header include
2006-11-06 14:03:17 +00:00
1a19ab9c08 INTEGRATION: CWS pchfix02 (1.2.98); FILE MERGED
2006/09/01 17:32:25 kaib 1.2.98.1: #i68856# Added header markers and pch files
2006-09-16 23:14:06 +00:00
a626b2f513 INTEGRATION: CWS pchfix02 (1.3.260); FILE MERGED
2006/09/01 17:32:25 kaib 1.3.260.1: #i68856# Added header markers and pch files
2006-09-16 23:13:51 +00:00
507f3fa747 INTEGRATION: CWS pchfix02 (1.3.260); FILE MERGED
2006/09/01 17:32:24 kaib 1.3.260.1: #i68856# Added header markers and pch files
2006-09-16 23:13:36 +00:00
4a7e1371e4 INTEGRATION: CWS pchfix02 (1.4.164); FILE MERGED
2006/09/01 17:32:24 kaib 1.4.164.1: #i68856# Added header markers and pch files
2006-09-16 23:13:23 +00:00
be9a23e723 INTEGRATION: CWS jsc3 (1.4.4); FILE MERGED
2006/02/22 16:23:38 jsc 1.4.4.2: #i62443# insert workaround for touch problem with full qualified paths
2006/02/22 16:03:13 jsc 1.4.4.1: #i62443# insert workaround for touch problem with full qualified paths
2006-03-15 08:29:18 +00:00
a80325cfcf INTEGRATION: CWS jsc5 (1.3.46); FILE MERGED
2006/02/02 12:15:37 jsc 1.3.46.1: i59703# adapt makefile to be prepared for full qualified paths
2006-02-03 16:14:51 +00:00
e526f9d3ef INTEGRATION: CWS ooo19126 (1.4.30); FILE MERGED
2005/09/05 13:51:57 rt 1.4.30.1: #i54170# Change license header: remove SISSL
2005-09-07 19:13:11 +00:00
29f0a4ea14 INTEGRATION: CWS sdkbugfix02 (1.2.10); FILE MERGED
2005/03/03 15:42:02 jsc 1.2.10.1: #41142# replace make with internal MAKE variable
2005-03-29 11:13:42 +00:00
a607ac0ad2 INTEGRATION: CWS sdkbugfix02 (1.6.10); FILE MERGED
2005/03/03 15:42:01 jsc 1.6.10.1: #41142# replace make with internal MAKE variable
2005-03-29 11:13:15 +00:00