Stephan Bergmann
9e973325ec
distclean generated ios/lo.xcconfig
...
Change-Id: I5db55ab575e3343664080936bd14a0c04f134fb6
2013-10-17 23:37:29 +02:00
Matteo Casalin
43ccd83d25
URI schemes must be matched case-insensitive
...
Change-Id: I0ca761cdbf2509ab225101984484905c94e8b3a1
2013-10-17 23:32:10 +02:00
Matteo Casalin
fc357b79e7
Remove dead check for start of string
...
Change-Id: Ib8fcc3dc5d216d1cfae569f605a3f415f80770c4
2013-10-17 23:32:10 +02:00
Matúš Kukan
94f99a6bae
sax: build fix: don't prefix enum values
...
Change-Id: I6f4eac6103821227bc72de8c3bb0fb89a7a8bc9d
2013-10-17 22:56:58 +02:00
Matúš Kukan
dd35d93d81
sax_attributes: needs cppuhelper on Windows
...
Change-Id: I5c9fca7f895b57fcfc5cdd8e5cbd879c74fbbf04
2013-10-17 22:31:48 +02:00
Matúš Kukan
a2e59ec887
sax_parser: needs also boost_headers
...
Change-Id: I2b0dd5a63d3a0d064c6431e01ad76fff111b67e6
2013-10-17 22:11:15 +02:00
Andras Timar
7527e8f71b
fix thinko
...
Change-Id: I766665e9b4cc83a78d718b194eb8dbb3fd5113aa
2013-10-17 21:14:47 +02:00
Andras Timar
828bc9d937
remove German text from resource
...
Change-Id: I8a34d2a5d4ea5e8e7f2245b97e4b8b0577edcc17
2013-10-17 21:14:47 +02:00
Matúš Kukan
b9c9874853
sax: fix build: needs explicit type
...
Change-Id: I5a5c52215b0177d663f0694515240c3f95a3ab40
2013-10-17 21:57:21 +02:00
Eike Rathke
45d569be8f
use LANGUAGE_MASK_PRIMARY in MsLangId::getScriptType()
...
Change-Id: I55ce19b615722fe9152a4c683037bbb4578dd49e
2013-10-17 21:55:57 +02:00
Tor Lillqvist
2b8b417401
We don't use cppunit when cross-compiling
...
Change-Id: I8ff723233546d9becd001ab54a7df5ad98223f90
2013-10-17 22:53:44 +03:00
Tor Lillqvist
04aaf0a52f
These are handled in external/Module_external.mk
...
Change-Id: I1d1fbef457a34f730c9a83c5580fd56a0bed455c
2013-10-17 22:53:43 +03:00
Matúš Kukan
aeca826f34
fastparser: don't use multithreading for small documents
...
Determined by XInputStream::available().
Change-Id: I450f4796d9c072b395393582bfc3e1e7768e243b
2013-10-17 21:38:40 +02:00
Matúš Kukan
7aa35dcb43
fastparser: don't create temporary Events; use references to event list
...
Change-Id: I1e12fbeeb90d6020d0566d05fc0318082e1da5fc
2013-10-17 21:38:39 +02:00
Matúš Kukan
6f1a110a37
fastparser: reuse event lists if possible
...
Instead of allocating and freeing the memory all the time.
Change-Id: I53800abaca51d42d7d44a98fb271de7df7f90f58
2013-10-17 21:38:38 +02:00
Michael Meeks
902748b6ff
fastparser: re-work locking, add high & low watermarks, change sizes etc.
...
Change-Id: I7fe1435addc6dce5a74a8411f7825cea331a5b3f
2013-10-17 21:38:38 +02:00
Matúš Kukan
9612bdbfa9
fastparser: implementation using two threads
...
Instead of calling methods directly, generate EventList - vector of
Events, where arguments for the callee are stored.
Change-Id: I227a0ef3038566664ac8f294770152c8b445997b
2013-10-17 21:38:38 +02:00
Michael Meeks
2df047bfd1
fastparser: cache default namespace token for ooxml.
...
Change-Id: Iee98ec92380d6d0404ab236e062ddbc2378cda43
2013-10-17 21:38:37 +02:00
Matúš Kukan
c293e73e8f
FastAttributeList: avoid OStrings in attribute list; just use char buffer
...
Change-Id: I4879563fae3b85c68bbd1c4b260f9833848f4bda
2013-10-17 21:38:37 +02:00
Matúš Kukan
9ae701509a
FastAttributeList: use vectors instead of map; the size is small
...
This is also preparation to avoid OString internal usage.
Change-Id: If0ea36155d8ab3f5c91c2aafd6932fabeadadd41
2013-10-17 21:38:37 +02:00
Matúš Kukan
bc2d6ef106
fastparser: remove duplicated OString version methods
...
Also remove AttributeData and make the two for-cycles faster.
Change-Id: If0343992173bb333eee39c33bcb86acaa5a3d288
2013-10-17 21:38:36 +02:00
Matúš Kukan
03d76d034e
fastparser: isolate calls to XFastContextHandler in Entity's methods
...
Unfortunately, we have to store maNamespace in two stacks.
One for future parser thread to compute tokens and one for
main thread calling XFastContextHandler.
Now we are prepared to implement multithreading.
Change-Id: I421b55afa2e9ea80142e6068c7a515d31913ba69
2013-10-17 21:38:35 +02:00
Matúš Kukan
bd4c869bbb
fastparser: store mnNamespaceCount in another stack
...
This is preparation work for multithreading.
mnNamespaceCount will be handled in parser thread and the rest in main
thread.
Change-Id: I571026ea499f6876b8dafb4e1bdc56d1add649e5
2013-10-17 21:38:35 +02:00
Michael Meeks
7e77559b6f
oox: special-case single-character a-z token mapping.
...
Change-Id: I58a810cc6062d5b42558dd5c0f37426a8a210f40
2013-10-17 21:38:34 +02:00
Matúš Kukan
86501dd6e0
sax: add unit test for FastAttributeList
...
Change-Id: Ie87c80383991dca84b4f6e2074c5c53567ded0b6
2013-10-17 21:38:34 +02:00
Matúš Kukan
dffb0782bb
sax: add unit test for FastSaxParser
...
Adapt FastSaxParser so that it does not require XFastDocumentHandler.
Change-Id: I7af49752dfbb4b55b8dde094fe6b762bd179be78
2013-10-17 21:38:33 +02:00
Matúš Kukan
7082efee96
remove not implemented method declaration
...
Change-Id: I340ab40724cc864920cea05db63440803e60e275
2013-10-17 21:38:33 +02:00
Samuel Mehrbrodt
5d4558da5f
fdo#58982 Center the splash screen in dual-monitor setup
...
The problem was that the position of the screen was not considered.
Change-Id: I1b2feb916952a4175bfff0675a884477407a702c
Reviewed-on: https://gerrit.libreoffice.org/6119
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
2013-10-17 18:44:05 +00:00
Tor Lillqvist
ab5b6e3de4
The Emacs mode for Objective-C is called "ObjC"
...
Change-Id: I78428758aff0f0fb7e25ae8724ac32db824e10a6
2013-10-17 21:18:10 +03:00
Miklos Vajna
5d4f1fa7b6
writerfilter: remove unused WW8StyleSheet class
...
Change-Id: Id006db1013c981a6f2392bb52c2f26cf5e5bae5d
2013-10-17 20:14:12 +02:00
Tor Lillqvist
ad55d4e904
Bin --enable-desktop-gui-elements
...
Nobody wants LO's own widgets in a touch / mobile app after all.
Change-Id: I84f1e85cebce80b6ff4ec5e4e3254654b5f5e6ec
2013-10-17 20:45:21 +03:00
Miklos Vajna
cce7939a16
writerfilter: remove unused WW8Style class
...
Change-Id: I24af395c6899e9b3551bd7ff473ada2315812173
2013-10-17 19:26:26 +02:00
Khaled Hosny
7223027a3a
fdo#70393: move cppunit to a subdir of external
...
Change-Id: I96ab796757af0c6c6741059b35fcaeefc2bf4507
Reviewed-on: https://gerrit.libreoffice.org/6286
Tested-by: LibreOffice gerrit bot <gerrit@libreoffice.org>
Reviewed-by: Björn Michaelsen <bjoern.michaelsen@canonical.com>
Tested-by: Björn Michaelsen <bjoern.michaelsen@canonical.com>
2013-10-17 17:17:22 +00:00
Khaled Hosny
894f5e46a6
fdo#70393: move clucene to a subdir of external
...
Change-Id: Ia9b7b18526119e29e21eb315d84d099861e15ea0
Reviewed-on: https://gerrit.libreoffice.org/6285
Reviewed-by: Björn Michaelsen <bjoern.michaelsen@canonical.com>
Tested-by: Björn Michaelsen <bjoern.michaelsen@canonical.com>
2013-10-17 17:15:05 +00:00
Miklos Vajna
8e434a45c2
MSWordStyles: initial DOCX export of list styles
...
Change-Id: I96522b72de1e0322229105c24913ed011b28d170
2013-10-17 19:03:36 +02:00
Eike Rathke
c450aafad0
solve the 'dz' vs 'bo' and 'nn', 'nb' and 'nn' share primary ID cases
...
Change-Id: I7ccead4493c9848b55f642c2636daa3c60aeb7a6
2013-10-17 18:36:05 +02:00
Stephan Bergmann
7bbd58eafc
fdo#70319 "exponent followed by at least on digit" also for special case 0.0
...
Change-Id: I07e7917417b8a22cf6d64f2b7a447f9084b9fa2d
2013-10-17 18:01:59 +02:00
Miklos Vajna
2ed29702ab
sw: bool -> enum for style type in AttributeOutputBase
...
For now just use what we have already: paragraph and character styles.
But it enum should contain numbering styles as well in the future.
Change-Id: Ifd2f918446537e04cb5ba2cd8df822c5a1f9099c
2013-10-17 17:59:06 +02:00
Caolán McNamara
d1563b818d
Related: fdo#38838 make String::CompareTo private
...
Change-Id: Ibb17bb9e5df9fa9cf9abc4c05dc6ae8fa15b4058
2013-10-17 16:52:11 +01:00
Stephan Bergmann
63691a62c8
Consistently use SAL_USE_VCLPLUGIN as a bootstrap variable
...
...and neither exclusively nor additionally as an environment variable (where
bootstrap variables include environment variables, see the @file comment in
include/rtl/bootstrap.h). Note that LibLibreOffice_Impl::initialize
(desktop/source/lib/init.cxx) sets it as a bootstrap, not as an environment
variable. (Though desktop/unx/source/start.c still only reads it as an
environment variable; could potentially check argv for
-env:SAL_USE_VCLPLUGIN=...)
Change-Id: I9315f585cdb4f0783181359e030686167c4e4625
2013-10-17 17:39:21 +02:00
Ptyl Dragon
76a9ae801b
added for infrastructure for ios tile testing app
...
Change-Id: Ie8ac64769c01c5e967a56844a69747ef4d4f20af
2013-10-17 17:02:44 +02:00
Ptyl Dragon
ae549ad1e6
infrastructure for ios tile testing app
...
Change-Id: I1a3d10b7fb61b19664b383d29c6e607c01b90a71
2013-10-17 17:02:43 +02:00
Lionel Elie Mamane
647d766c32
Updated core
...
Project: help e4a53e8dd344207f81e1a06db8db153883fddcb3
add DateAdd to index of all Basic functions
Change-Id: I822dffb39e12a3bc8702e3bb50d22bbd3dfa2eaf
Reviewed-on: https://gerrit.libreoffice.org/5900
Reviewed-by: Lionel Elie Mamane <lionel@mamane.lu>
Tested-by: Lionel Elie Mamane <lionel@mamane.lu>
2013-10-17 14:22:46 +00:00
Lionel Elie Mamane
a1c6000984
per SQL standard, BIT is 0/1 but BOOLEAN is true/false
...
Change-Id: If088cd33c19bccddbf145a44d19bf37adf638f3b
2013-10-17 16:20:19 +02:00
Lionel Elie Mamane
080e9c2987
bogus WaE: 'bValue' may be used uninitialized in this function
...
Change-Id: Ifde0f9370d093f447edac4899c5bbc7940da5a8c
2013-10-17 16:00:55 +02:00
Stephan Bergmann
1fc195f7e8
Simplify code (VERBOSE was unused)
...
Change-Id: I281be165fe110fee3e174e96e11cdbc4aa5671e0
2013-10-17 15:35:29 +02:00
Thomas Arnhold
c65eb7e569
Related: fdo#38838 remove String::SearchAndReplace
...
Change-Id: I1cc52d0be360b05e722a18b3ca5d08b2b0b0842d
2013-10-17 15:22:20 +02:00
Thomas Arnhold
5df4743236
remove some unused code
...
Change-Id: If3e7c03aedf7b953c7bd3017534b3d5fbeeb6192
2013-10-17 15:22:20 +02:00
Stephan Bergmann
2d1675c3ad
The getSupportedServiceNames implementations will already take care
...
Change-Id: I0c7ae8e0393f069259b943e04368e874abdf8386
2013-10-17 15:03:50 +02:00
Marcos Paulo de Souza
3d3293144b
fdo#54938: Adapt svtools and comphelper module ...
...
to use cppu::supportsService and other pieces.
Change-Id: I16893b3d31a8055acd214ff23d01e63d38fe0826
Signed-off-by: Stephan Bergmann <sbergman@redhat.com>
2013-10-17 14:43:28 +02:00