Commit graph

358375 commits

Author SHA1 Message Date
Markus Mohrhard
62101bcacb also move isystem parts to the includes
Change-Id: Ib88064744c7ae678d6c3dcce835a295de8fb274e
Reviewed-on: https://gerrit.libreoffice.org/10814
Reviewed-by: David Tardon <dtardon@redhat.com>
Tested-by: David Tardon <dtardon@redhat.com>
2014-08-11 12:36:40 +00:00
Caolán McNamara
212f745c29 Related: fdo#82259 stmary can render its own name, but unreadably
Change-Id: Iedff28d1290efb38eb68f83757a0787d52e28859
2014-08-11 13:13:12 +01:00
Lionel Elie Mamane
35836d2494 switch internal mariadb client to version 2
and reenable it: hopefully the worst bugs are fixed now

Change-Id: I8033ef87d02ba6619e5f778b5255fa803ba63c5b
2014-08-11 13:51:38 +02:00
Caolán McNamara
94753833b9 Related: fdo#82259 add Armenian preview text
Change-Id: I3698b5cbf8c39e618faaae1321eaa4442f1b2827
2014-08-11 12:47:04 +01:00
David Tardon
941201e0de Updated core
Project: help  12bab40167e179cb6e65f6ba76a3eb5b098d4216
2014-08-11 10:45:38 +00:00
Szymon Kłos
6271f2e1f7 RID_SVX_MDLG_DOCRECOVERY_BROKEN conversion to .ui
Change-Id: Ic3ed2c73e255c99b48f4dab5ea434c75313ec93d
Reviewed-on: https://gerrit.libreoffice.org/10865
Reviewed-by: David Tardon <dtardon@redhat.com>
Tested-by: David Tardon <dtardon@redhat.com>
2014-08-11 10:40:00 +00:00
Noel Grandin
76c1092016 java: remove unused parameters
Change-Id: I9ae22afc27ac0d2051f06885f363845e9b4ce2ff
2014-08-11 12:33:03 +02:00
Noel Grandin
ebe8dbe0fd java: remove unused methods
Change-Id: I1abc51f66bc7d7f7135bf5cdee4fae653b2837ec
2014-08-11 12:33:03 +02:00
Noel Grandin
d5a31b2215 java: remove unused parameters
Change-Id: Ifc44c51ddbd21fabaad686bc3d38e2dab54d97aa
2014-08-11 12:33:02 +02:00
Noel Grandin
41709cc268 java: remove unused parameters
Change-Id: I47c618117e079bb2ef90d92c449c8166ea957fa5
2014-08-11 12:33:02 +02:00
Adolfo Jayme Barrientos
2b9ad46b23 Resolves fdo#79278: not too dark, not too bright background color
This patch is based on Caolán's one at 68075a61c2
I've chosen the background color used in Windows program Paint.NET as
our default background color. It's a nice compromise that doesn't look
out of place anywhere.

Change-Id: I5081201043be4a7ad6152d1ce59451daa4ece1ac
Reviewed-on: https://gerrit.libreoffice.org/10527
Reviewed-by: Stefan Knorr <heinzlesspam@gmail.com>
Reviewed-by: Christian Lohmaier <lohmaier+LibreOffice@googlemail.com>
Tested-by: Christian Lohmaier <lohmaier+LibreOffice@googlemail.com>
Reviewed-on: https://gerrit.libreoffice.org/10520
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
2014-08-11 10:31:27 +00:00
Caolán McNamara
ad40561d13 Resolves: fdo#82025 use strlen instead of stored length byte
Change-Id: I58cf2391d7bf2480cd12d2b1b4cf73f346f4f95f
2014-08-11 11:28:18 +01:00
Tor Lillqvist
a59e2d4f05 fdo#82038: Make sending email from LO work again on OS X
Do build the cmdmail library, the uri-encode executable and do install
the senddoc script for OS X, too.

Note that in order for it to work, one needs to set the "E-mail
program" in Preferences:Internet:E-mail to /Applications/Mail.app. (Or
possibly some other application and/or executable.)

Change-Id: I5764c9891865983d46081edc854e321643c296cc
2014-08-11 12:24:01 +03:00
Caolán McNamara
8c9f48cdd0 m_pFT_HeaderText now unused
Change-Id: Ibfce3f5ffcdaa60e7b243ed43631ca133c3917ed
2014-08-11 10:22:13 +01:00
Caolán McNamara
93ea1a09e0 don't need to reference these widgets anymore
Change-Id: I19ce9b2c002f8f5102a2d0bd06d08a1abfa63bda
2014-08-11 10:22:12 +01:00
Caolán McNamara
8d7eba4790 these are global strings now
Change-Id: I0ca622afcf5dd4a5cc62d9bfd31974d800c659d1
2014-08-11 10:22:12 +01:00
Caolán McNamara
933bcfd2fe various ids not loaded from .res anymore
Change-Id: Id2fab3e4b7a8feed3107e66d02cdf2a278ae9ef7
2014-08-11 10:22:12 +01:00
Caolán McNamara
e1683c2d13 callcatcher: update unused code
lots of ResID stuff going away now

Change-Id: Iad8524e201cd3072db71da9e5ee1c244ed337967
2014-08-11 10:22:12 +01:00
Pallavi Jadhav
f6e7b94042 fdo#82123 : DOCX: Corruption: File was getting corrupt fafter RT
Issue :
	- In issue file there were two runs(first run=SDT, second run=Image).
	- These two runs were consecutive(no text/space/tab was there in between two runs).
	- Due to such scenario, "SdtEndBefore" was not getting set.
	- Hence at Export EndSdtBlock() was getting called form EndParagraph()
	  Instead EndSdtBlock() should ge called from EndRun() in order to end
	  sdt after first run(as in Original file)

	Implementation :
	- Set "SdtEndBefore" on Graphic in DomainMapper_Impl::ImportGraphic()
	- Retrieved same property at export.
	- Added export unit test case.

Change-Id: Id514b91f1831af371924f94388f0a404d762c042
Reviewed-on: https://gerrit.libreoffice.org/10827
Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk>
Tested-by: Miklos Vajna <vmiklos@collabora.co.uk>
2014-08-11 08:28:57 +00:00
Miklos Vajna
ba774649fb Another tblLook having the wrong complex type
Change-Id: Ia9b22a3a042cb22499e8b1fdfbc57b27a3f50911
2014-08-11 09:21:22 +02:00
Laurent Godard
454ec6e791 XStyleLoader2 : enhance unit test to PageStyle
and remove duplicate code

Change-Id: Ib9e3568c860fe5cd3f11374a1c61dff101e33a18
Reviewed-on: https://gerrit.libreoffice.org/10832
Reviewed-by: David Tardon <dtardon@redhat.com>
Tested-by: David Tardon <dtardon@redhat.com>
2014-08-11 06:37:02 +00:00
rbuj
8d10b7373a javaunohelper: enhancements in decodeUTF8
Change-Id: I452dbd54251eea683d307c346dc4949a42eedc30
Reviewed-on: https://gerrit.libreoffice.org/10862
Reviewed-by: David Tardon <dtardon@redhat.com>
Tested-by: David Tardon <dtardon@redhat.com>
2014-08-11 06:23:11 +00:00
rbuj
608f330e22 javaunohelper: Number parsing
Change-Id: Ie6856ea4c196479aef1ce00a7cf2709fea8b3e42
Reviewed-on: https://gerrit.libreoffice.org/10860
Reviewed-by: David Tardon <dtardon@redhat.com>
Tested-by: David Tardon <dtardon@redhat.com>
2014-08-11 06:22:26 +00:00
Tor Lillqvist
ad85ce18d3 "fixes" needed because ure/source/unorc is now expanded at configure time
Argh, this is getting even uglier.

We cheerfully ignore for now the theoretical possibility that the URE
unorc used by build-time tools (i.e. the configure-expanded
ure/source/unorc) could be different for HOST and BUILD (in case they
use different --enable-canonical-installation-tree-structure), and use
the HOST one for the BUILD tools.

The right thing would probably be to construct the URE unorc in the
relevant Makefile, like we do for fundamentalrc? Or then to just
re-design the whole mess of rc files into some simpler (good luck).

Change-Id: I654309503d0e696778910acadcbf2f6b90ffa02a
2014-08-11 08:15:03 +03:00
Tomaž Vajngerl
310ed3d399 copy android-support-v4 from SDK to libs at build
Change-Id: I3adaf26624ffc46b304d35e0588e7253c20cb5ee
2014-08-10 23:00:46 +02:00
Tomaž Vajngerl
ba7578401b LOKit: ensure DrawViewShell is available (prevent crash)
Change-Id: Id143f5fabdcb8b7451d750563c76b77f9c3787a3
2014-08-10 23:00:46 +02:00
Tomaž Vajngerl
b69f5a1857 LOAndroid3: Add a side drawer to show available parts (by name)
Use DrawerLayer to show a side drawer with parts of the loaded
document. The dawer consists of an image (could be changed by a
thumbnail in the future) and the part name.

Change-Id: I27fb6112d9f11e19f3295ace97103b89816591aa
2014-08-10 23:00:45 +02:00
Tomaž Vajngerl
5af2c26048 LOAndroid3: correctly calculate the tile view rect
Because the tile view rect wasn't correctly calculated, some tiles
were deleted and in the same call immediately created again. With
this fix the performance increases.
Additionally inflate tile view rect by one tile to minimize the
undrawn tiles when scrolling.

Change-Id: I4b5b2bb31dd4f55babf87503dd37e396f6a5e200
2014-08-10 23:00:45 +02:00
Tomaž Vajngerl
b58777c8b2 LOAndroid3: Check if document has been loaded correctly
Change-Id: If4ef82fa18aaa8719391773971d0cde07c0fbcce
2014-08-10 23:00:44 +02:00
Tomaž Vajngerl
c1b793d501 LOAndroid3: remove unused GeckoEventListener and WidgetTileLayer
Change-Id: Id5c245d308221975f4071c96fb275c41348dce68
2014-08-10 23:00:44 +02:00
Tomaž Vajngerl
d8f5616f1a LOAndroid3: increase SDK level
Change-Id: Ice1c975cce2de98a0c02b0772c07278648a0088d
2014-08-10 23:00:44 +02:00
Tomaž Vajngerl
81f1c25927 LOKit android: add support for setPartMode and getPartName
Change-Id: Idd8bd4d4b148e88c7badd06fefb7cfcfc24ec9ea
2014-08-10 23:00:43 +02:00
Miklos Vajna
656ab07b29 Sync oox -> writerfilter alias for wordprocessingml
The motivation is that once all the namespace aliases in
writerfilter/source/ooxml/model.xml match the ones in
oox/source/token/namespaces.txt, then the writerfilter copies could be
dropped.

Change-Id: I1f9abb8bb457189997f28c99b0f6b00660252c14
2014-08-10 21:04:49 +02:00
Miklos Vajna
e617c5173b Remove unused empty elements
Change-Id: I17815878be292bb23602232456648f9571b8de06
2014-08-10 21:04:49 +02:00
Miklos Vajna
8ae087b8fc fdo#82106 RTF import: fix missing tab after special footnote
Change-Id: I5ea45dbed652231acdcc3632ced728ed8bcb621a
2014-08-10 21:04:49 +02:00
Tor Lillqvist
8e9487cf97 Ugly hack to fix build when srcdir!=builddir
The problem is that the ure/source/unorc file is now expanded by the configure
script, and thus exists only in builddir. But a further complication is that
the uno.ini file is in srcdir. This is one way to handle it. Seems to work for
me, let's see what the srcdir!=builddir tinderbox slaves say.

Change-Id: I6fb456cf849ce5077e2c5bd25dc9149096aab241
2014-08-10 19:43:32 +03:00
Maxim Monastirsky
5b9509115b fdo#71625 Don't loop autosave if userautosave fails
Should also fix most of the reports of fdo#46635
(I have no idea regarding the original report,
because it predates the autosave feature.)

Change-Id: I006d62053a159ab3157438a57dee56d6d99990a8
2014-08-10 15:55:07 +03:00
Julien Nabet
c64077a850 Typo: delet=>delete
Change-Id: Ic0f4757fbd416bd7157b414b84a68b2541bc5b34
2014-08-10 11:36:55 +02:00
Miklos Vajna
19ccb678d2 Remove unused group elements
Change-Id: I6ea77279a002179f2dd30bc835bb810c91ee51c4
2014-08-10 11:17:49 +02:00
Miklos Vajna
676efaa5a1 Remove unused list elements
Change them to choice, what was probably really meant here: allow one of
the values, not a whitespace-separated list of one or more values.

Also, clean up nested choices.

Change-Id: I87bc30b710569e317da05933502b36d8d97e4155
2014-08-10 11:17:49 +02:00
Miklos Vajna
b17f4ecea1 Remove unused name attributes
For <value> elements inside <resource> ones, the name attribute and the
text of the element was the same, but our scripts only parsed the text.
So remove the redundant code that's ignored anyway.

Change-Id: I0d96b485c9e095be51571f2d68eb395920c97bc8
2014-08-10 11:17:49 +02:00
Miklos Vajna
3808a32749 Remove unused interleave elements
Change-Id: Ia4f7c828c5633fe2b7747cfd00cd53cd916a6d4a
2014-08-10 11:17:49 +02:00
Maxim Monastirsky
b73ee73da5 fdo#78845 Packaging of fpicker ui files
Change-Id: I5edb560dc511f6f0e47984303ce41488806e9e20
2014-08-10 12:12:45 +03:00
rbuj
85ab4a14c5 jurt: Use <T> T[] toArray(T[] a)
http://docs.oracle.com/javase/1.5.0/docs/api/java/util/Set.html#toArray%28T%5b%5d%29

Change-Id: I601e77db3cc978d81aebddfe6abba1c020671913
Reviewed-on: https://gerrit.libreoffice.org/10853
Reviewed-by: David Tardon <dtardon@redhat.com>
Tested-by: David Tardon <dtardon@redhat.com>
2014-08-10 07:34:32 +00:00
rbuj
c77e929c4b javaunohelper: Iterate over each Entry in a Map & Enhanced for-loops
Change-Id: I7abd62e0717bfc9c9b36a431092ddd92ef72684a
Reviewed-on: https://gerrit.libreoffice.org/10852
Reviewed-by: David Tardon <dtardon@redhat.com>
Tested-by: David Tardon <dtardon@redhat.com>
2014-08-10 07:30:22 +00:00
Tor Lillqvist
4625227ed8 Seems to work now
Change-Id: I59402e2f0503369370cc87017e0c8e01541ccfa0
2014-08-10 10:08:40 +03:00
Tor Lillqvist
59622dabde javaldx is not built for WNT or MACOSX so no point in the uno wrapper script
Change-Id: I127205ebf6fb3fe01de6803a989e970f46df22bb
2014-08-10 10:08:39 +03:00
Tor Lillqvist
5e5aa9b08a Use LIBO_URE_BIN_FOLDER and LIBO_SHARE_JAVA_FOLDER
Needed in case of --enable-canonical-installation-tree-structure.

Change-Id: I965ebd9b89e1b9f7bb6534e3c25d29d3b470acf4
2014-08-10 10:08:38 +03:00
Tor Lillqvist
b6869717a3 Fixes for the --enable-canonical-installation-tree-structure case
Do install the uno and startup.sh commands, smoketest needs them

Change-Id: Ia530564e4b664881d730355a80e2af4476987e10
2014-08-10 10:08:36 +03:00
Tor Lillqvist
6ac5235542 Make this work better in the ENABLE_MACOSX_MACLIKE_APP_STRUCTURE case
In that case the dylibs won't be in the parent directory of where the
jars are (Resources), but in Frameworks.

Change-Id: I628d828ca820d07724947050f54f9f5f9148e159
2014-08-10 10:08:35 +03:00