Commit graph

325687 commits

Author SHA1 Message Date
Aurimas Fišeras
bc54a6c41d Update pch
Change-Id: I25140e854458186c7f66aba1baeabd5fadb3e162
Reviewed-on: https://gerrit.libreoffice.org/3655
Reviewed-by: Tor Lillqvist <tml@iki.fi>
Tested-by: Tor Lillqvist <tml@iki.fi>
2013-04-29 09:16:12 +00:00
Norbert Thiebaud
73def9ced7 move to MPLv2 and remove my name from the header itself
Change-Id: I1961da149ed350131e19233bd5694ae8b6fe65ba
2013-04-29 04:13:36 -05:00
Caolán McNamara
f0596516b9 Resolves: fdo#51556 allow tab traversing into the conditional formatting list
Change-Id: Ie08a7312df0d42efc3697089cf766ceeefd623b0
2013-04-29 10:09:15 +01:00
Stephan Bergmann
93b5786930 ...and update TODO comment
Change-Id: I04d9988ab2035ec2d68fac19f506a6b461e4d257
2013-04-29 10:50:17 +02:00
Stephan Bergmann
b993c5591e RuntimeException missing from exception specification for UNO method
...which lead to std::unoexpected from sw/PythonTest_sw_python.

Change-Id: I94bdbbe131a7c65c363f7aa66e8d8df7bd531449
2013-04-29 10:44:59 +02:00
Stephan Bergmann
1c2862e8d1 Remove residue of undocumented "edition" feature
...whereby some branding could be orverridden with information from a program/edition/
directory.

Change-Id: I7f9324678b09bc8069775dfcbda97be8e0618a91
2013-04-29 10:27:29 +02:00
Wol
8ad743ca8d pgsql-sdbc: conninfo keywords as static table instead of series of "else if"
New keywords can now simply be added to a static array rather than
adding a new "else if" blocks for each keyword.

Change-Id: Ib581b3e834a57e0dfa9d139bcb4ae7a0a52a5472
2013-04-29 10:20:32 +02:00
Miklos Vajna
13a0477250 SwTxtSizeInfo ctor: take a pointer, not a reference
The ctor later will turn that reference to a pointer anyway, but the old
code made it easy to pass a String, get it implicitly converted to
OUString, and then we took the address of the temporary OUString, later
resulting in accessing already freed memory. Instead, take an OUString
pointer, and then the compiler will warn about a String* -> OUString*
conversion. Adapt one remaining caller accordingly.

Change-Id: I4084dea1d245f0c8919d6afe47c5f391729f6eaf
2013-04-29 10:19:51 +02:00
Caolán McNamara
9069a4a477 convert drop down field dialog to .ui
Change-Id: If629068fee488abbad9704b8300e59ea4c5c8605
2013-04-29 09:04:44 +01:00
Sameer Deshmukh
7653d04179 fdo#61060 - Freezing now marks spreadsheet as unsaved.
Change-Id: I0b479500938e185fb6d163837b29e6e36e823260
Reviewed-on: https://gerrit.libreoffice.org/3641
Reviewed-by: Tor Lillqvist <tml@iki.fi>
Tested-by: Tor Lillqvist <tml@iki.fi>
2013-04-29 07:02:38 +00:00
Gokul
40ef445db6 UpdateTableShape() is called when we call SetAttrToSelectedCells method
IMO Calling this method again is not required. The If Blocks returns
false when User Clicks "Cancel" Button in "Format Cell" Widget,
IMO on Cancel Their is no need to Update the table. And on Ok
SetAttrToSelectedCells method is called which inturn calls
UpdateTableShape() method.

Change-Id: I2bb0bb616cc978717a1494e01f257631aadd613c
Reviewed-on: https://gerrit.libreoffice.org/3391
Reviewed-by: Tor Lillqvist <tml@iki.fi>
Tested-by: Tor Lillqvist <tml@iki.fi>
2013-04-29 06:46:37 +00:00
navin patidar
706e3b8e43 fdo#63546: set appropriate alignment when wrt direction of cells is changed.
Iterate over all selected cells, set appropriate alignment based on
current writing direction and alignment of the cell.

Don’t change alignment when cell is center aligned or justified.
and if alignment is right or left, change it respective to writing direction.

Change-Id: Ie98a46af97236ab4303d030f11bd167939dde32b
Reviewed-on: https://gerrit.libreoffice.org/3549
Reviewed-by: Tor Lillqvist <tml@iki.fi>
Tested-by: Tor Lillqvist <tml@iki.fi>
2013-04-29 06:09:27 +00:00
Marcos Paulo de Souza
1cd9b5d859 fdo#60949: Remove UNOLIBS_OOO
By removing the last two libs: nullcanvas and directx5canvas.

directx5canvas seems to be dead and nullcanvas don't have entries in scp2.

Change-Id: Ib8fc1da123f8374fb83192f14db730638213f564
Reviewed-on: https://gerrit.libreoffice.org/3626
Reviewed-by: David Tardon <dtardon@redhat.com>
Tested-by: David Tardon <dtardon@redhat.com>
2013-04-29 04:19:34 +00:00
Chris Sherlock
e986d3e396 fdo#39468 Translation and cleanup
Cleanup of source code:
- translated German to English
- removed useless comment decorations
- removed commented out code
- some reformatting of code

Change-Id: I71d5fdab8226d61bda9ac906bb82176dc11cafd2
Reviewed-on: https://gerrit.libreoffice.org/3643
Reviewed-by: David Tardon <dtardon@redhat.com>
Tested-by: David Tardon <dtardon@redhat.com>
2013-04-29 04:15:58 +00:00
Markus Mohrhard
e81d0c400c change order to allow validation of chart part
My simple test file is finally valid but is still now shown in Excel.
There must be another bug in our exporter.

Change-Id: Ib55e5b32edc3a556e9081b3008df539275dc289b
2013-04-29 00:15:01 +02:00
Markus Mohrhard
3812e99e93 another validation error with OOXML chart export
c:characters does not have an attribute val. The value has to be written
out as normal string.

Change-Id: Icd2c4034918bd223d0c8082a7d137e1ce79a9cfe
2013-04-29 00:15:01 +02:00
Markus Mohrhard
672398d84d order of element matters in OOXML export
this fixes one validation error with documents containing charts

Change-Id: I879963484b1cc00322e8c79bf77dfbbf91869587
2013-04-29 00:15:01 +02:00
Markus Mohrhard
33671ee413 export for error bars to OOXML, fdo#62312
This does not work yet as we have several validation errors in our
exported OOXML chart doc. I have to clean them up before the documents
are accepted by Excel.

Change-Id: I0bba64a9c6cab489199c8e6f04158fea7b953d0a
2013-04-29 00:15:00 +02:00
Markus Mohrhard
3ba4b5a907 remove this property temporarily until I understand the exception
Change-Id: I74a4dfcebd61ca1b6befa9f49214e4155ce0bd34
2013-04-29 00:15:00 +02:00
Markus Mohrhard
4e3e171262 use boost::scoped_ptr and direct values
Change-Id: I70be33bc4843a19a24ce2fcb0cda094684557c04
2013-04-29 00:15:00 +02:00
Julien Nabet
14a96e28c9 fdo#63197: convert osxres
Change-Id: I969217263fdda3e61b38dc16f0a9251b745de885
Reviewed-on: https://gerrit.libreoffice.org/3652
Reviewed-by: David Tardon <dtardon@redhat.com>
Tested-by: David Tardon <dtardon@redhat.com>
2013-04-28 18:23:10 +00:00
Julien Nabet
9c4f99287c fdo#63197: convert liblangtag_data
Change-Id: I0727b800c715962a88e256b30046c9e13d6bd2a9
Reviewed-on: https://gerrit.libreoffice.org/3650
Reviewed-by: David Tardon <dtardon@redhat.com>
Tested-by: David Tardon <dtardon@redhat.com>
2013-04-28 14:51:26 +00:00
David Tardon
88a943b051 generate versionrc for instdir
Change-Id: I5f2cdcd8a17ca250413bda066acaeab24118f9d6
2013-04-28 16:34:25 +02:00
David Tardon
e203f79faa copy xcd files to instdir
Change-Id: Idbde83eab55864c16e3472397cb5bd433cf2431c
2013-04-28 16:34:25 +02:00
David Tardon
ecc07f080f copy rc files to instdir
Change-Id: I5a4433595ac19930a40132c5749a8c0150c90aae
2013-04-28 16:34:25 +02:00
David Tardon
764e747a3a copy gdb pretty printers into instdir
Change-Id: I2e4805b89d519fd5586d5a1edf5dad7662c022de
2013-04-28 16:34:25 +02:00
David Tardon
db1b0ca015 copy rdbs to instdir
Change-Id: I1855e72efc1a034d28ca2326ad8b239e2671cea7
2013-04-28 16:34:24 +02:00
David Tardon
0346f008e7 gbuild: add ure-link to instdir
Change-Id: I1279ea7cdd9828598179154815a85e2a4ce7e567
2013-04-28 16:34:24 +02:00
David Tardon
6ae02e9c61 gbuild: generate ooenv for instdir
Change-Id: I1d2ab70a1557376f056b236c4785e013275bbb92
2013-04-28 16:34:24 +02:00
David Tardon
9c8786c3df gbuild: copy image zips to instdir
Change-Id: I073be89556091321543adfe246d751e5f4df119a
2013-04-28 16:34:24 +02:00
David Tardon
f8bf72f44a gbuild: copy resources into $(INSTDIR)
Change-Id: I06d20538ec2b4f80963e0e7c6c401b3d573aac86
2013-04-28 16:34:23 +02:00
David Tardon
efd2ac98ec gbuild: copy executables into $(INSTDIR)
Change-Id: I88f6327c12fa2b782aa5c82e5891006713348477
2013-04-28 16:34:23 +02:00
David Tardon
f48a576ff2 gbuild: copy shared libs into $(INSTDIR)
Change-Id: I20612a93a25d1748725a792cfae0bce8c3ef262b
2013-04-28 16:34:23 +02:00
David Tardon
488d0de6f8 gbuild: add var. for enabling runnable instdir
This is a part of my effort to get a runnable $(INSTDIR) as a more
convenient alternative to make dev-install. I plan to copy all necessary
shared libs, executables and other files to $(INSTDIR), which increases
the disk space demands for a build (there would be three copies of a
library/executable in the same build: one in $(WORKDIR), another in
$(OUTDIR) and one in $(INSTDIR)). Because the runnable instdir idea is
limited to Linux anyway (at least for now), it will be disabled by
default.

Change-Id: Ib61109b1a193c61c0236b50b64c34fea20f40297
2013-04-28 16:34:22 +02:00
Julien Nabet
9ed5affa51 fdo#63197: convert fontunxafm
Change-Id: Ib382319a4916b711c820c06ba57928ca11d0b804
Reviewed-on: https://gerrit.libreoffice.org/3648
Tested-by: David Tardon <dtardon@redhat.com>
Reviewed-by: David Tardon <dtardon@redhat.com>
2013-04-28 14:33:26 +00:00
Julien Nabet
2c04d86f69 fdo#63197: convert helpxsl
Change-Id: Icd436733b47d7883209fe73dc1d0099dc87db089
Reviewed-on: https://gerrit.libreoffice.org/3649
Reviewed-by: David Tardon <dtardon@redhat.com>
Tested-by: David Tardon <dtardon@redhat.com>
2013-04-28 14:31:57 +00:00
David Tardon
f7cea8fb5b use SAL_CONFIGFILE macro
Change-Id: I958a961993aaf920c52b5d7b8eea6666656b4ddd
2013-04-28 16:28:46 +02:00
Tor Lillqvist
c72bb2da7b Bin CLOOK comments and un-split one large switch statement
CLOOK = "Compiler Limit: Out Of Keys", an error reported by Microsoft's
compiler a long time ago. No such problem in those versions we support. No
need to mention CLOOK in comments any more.

While at it, re-combine one large switch statement that was split to avoid
CLOOK.

Change-Id: Id93d973a5fb3c81b6c754eef0ba3b0bd55a649d2
Reviewed-on: https://gerrit.libreoffice.org/3640
Tested-by: LibreOffice gerrit bot <gerrit@libreoffice.org>
Reviewed-by: David Tardon <dtardon@redhat.com>
Tested-by: David Tardon <dtardon@redhat.com>
2013-04-28 14:28:29 +00:00
Miklos Vajna
1fd3167695 fdo#63680 SwTxtCursor::GetCrsrOfst: don't pass reference to a temporary
This was a situation similar to
d0d295af53. Unfortunately just changing
SwTxtSizeInfo's pTxt to an OUString copy doesn't work, as we still have
code that relies on that being a pointer only.

Change-Id: I202d7e6f5bd3005fc50551aa7195b419994ca3e8
2013-04-28 16:25:31 +02:00
Arnaud Versini
d0d295af53 Keep OUString instance by using local variable to avoid crash.
Crash with GCC 4.8 without the modification.
Temporary fix, should be replaced by OUString copy.

Change-Id: Ieb2437f2ee6b02884aa10f2d03a4223306329cd8
Reviewed-on: https://gerrit.libreoffice.org/3647
Reviewed-by: Miklos Vajna <vmiklos@suse.cz>
Tested-by: Miklos Vajna <vmiklos@suse.cz>
2013-04-28 14:23:37 +00:00
David Tardon
92b618f582 do not copy anything to instdir in build stage
Change-Id: I923704d47d4fbc764e847a1bd6eed9fca2dce089
2013-04-28 15:20:07 +02:00
David Tardon
423bec3b76 drop UnoApiTarget_get_*headers
This was actually meant for idls, not headers :-) And it is obsolete, as
we do not deliver these to $(OUTDIR) anymore. We use explicit include
paths into $(SRCDIR) instead.

Change-Id: Iccb0dc529a99be59390f032fc331996146829abb
2013-04-28 15:20:07 +02:00
David Tardon
96f582ab70 drop forgotten decl. of _inc Package for UnoApi
We do not deliver the created headers anymore.

Change-Id: I5317c43522d0b91044ccc880031795360816b21d
2013-04-28 15:20:07 +02:00
David Tardon
cfd5faaf8f only deliver IDL files if needed
Change-Id: If59a19363d9b82f17fcdfe4632edf6f757c65f64
2013-04-28 15:20:07 +02:00
Julien Nabet
b5ca660e41 coverity#988424: Logically dead code
Change-Id: I916d72cb1104a4d6109a3c5a3a74fb74cea74769
2013-04-28 14:13:23 +02:00
Matthias Freund
df0376ea3f fdo#39468 Comment translation GER-ENG in sw/source/ui/shells/ (Part 2)
Change-Id: I389569b027a900f42e43762c5685ec239bc4b565
Reviewed-on: https://gerrit.libreoffice.org/3646
Reviewed-by: Chris Sherlock <chris.sherlock79@gmail.com>
Reviewed-by: David Tardon <dtardon@redhat.com>
Tested-by: David Tardon <dtardon@redhat.com>
2013-04-28 11:55:23 +00:00
Luke Deller
57082b1243 fdo#60910: discard UNO shape object in SdrObject::SetPage
The creation of the UNO shape in SdrObject::getUnoShape is influenced
by pPage, so when the page changes we need to discard the cached UNO
shape so that a new one will be created with the new page.

This replaces my first shot at a fix for fdo#60910 which reinstated a
line to discard the custom shape engine (and consequently the UNO shape) in
SdrObjCustomShape::InvalidateRenderGeometry.  That worked but did more
discarding than was necessary.

Change-Id: I665fb6f9e1563bbc4eced046f027a53991a7e45f
Reviewed-on: https://gerrit.libreoffice.org/3642
Reviewed-by: David Tardon <dtardon@redhat.com>
Tested-by: David Tardon <dtardon@redhat.com>
2013-04-28 11:52:12 +00:00
Thomas Arnhold
2094610175 namespacing cleanup
Change-Id: I1384bf53a29e174bb97db4c0644f9dce39c0e36d
2013-04-28 10:36:51 +02:00
Caolán McNamara
ca97ee598a collision between orcus::spreadsheet::col_t and aix col_t typedef
Change-Id: I091b12bed3cdfd3abacaa0dba7913d0351d17634
2013-04-28 09:04:42 +01:00
Ahmad H. Al Harthi
4c4b9db8bb fdo#35320 A fix for Arabic justification problem caused by kashidas
Change-Id: I512e6332a632acf90e4f995fbc7fd19e7ef094ec
Reviewed-on: https://gerrit.libreoffice.org/3644
Tested-by: Ahmad Harthi <aalharthi@kacst.edu.sa>
Reviewed-by: Ahmad Harthi <aalharthi@kacst.edu.sa>
2013-04-28 06:15:19 +00:00