Age | Commit message (Collapse) | Author |
|
Change-Id: I10f8d534d664c5f27a32214c00aeee890d993d18
|
|
Perhaps this will make valgrind happy?
Change-Id: I11f965d13f8d71b2ab9f9624367fd70713644f10
|
|
Change-Id: Iae3eceb38a6f9bc53805445799534ec8ee44a9a9
|
|
Change-Id: I20bbd2d5ed7ba3c84ee33544f4a1a39c02729c23
|
|
When removing an entry from the tree list, we need to
1) first remove the entry from the list,
2) broadcast its removal with the entry instance, then
3) finally delete the entry itself at the very end.
in this exact order, or else interesting stuff would ensue.
Change-Id: If42b141921ffe4ed36dce31f93a4a084204815bf
|
|
Change-Id: I48cd5988056c8dee10241d5ba3b469ae7e5191b9
|
|
Change-Id: I9bb589e8a349a1404f9c09a60a82e824918744fa
|
|
"make -jyes" considered useless
Change-Id: I044e95f76e8ea961e781e75c4b6923e700e0d375
|
|
Change-Id: I815ef8abaf4cd998e7b91fbadad56ddf0a7087ba
|
|
Change-Id: Ieba85dd0093c9f704090075d2eb75f1eefdd72de
|
|
...introduced with 75bc673b60d3eb40713868ce3d1b4f62dd6e1208 "Travelled MIME type
through UCB for CMIS UCP to use it when creating documents" and causing crashes
in sc_unoapi test. Many SfxMedium instances appear to have a null filter, so
this workaround at least fixes the crashes. No idea what a good fix should look
like, so will ask Cedric to review his commit.
Change-Id: I27180265b6c79c7ed5f459b03c9e188ff6a0f56d
|
|
Change-Id: I91ded7801f4959f2dac7b5b3e4c8d1f3929f4ed9
|
|
Change-Id: I8474e5da02036f065057a5610def6701db4cedc7
|
|
Change-Id: I431c0615de56ddc0fa2c0ea06567d32419d29440
|
|
Change-Id: I655e8e15c7f7a8c292b3a1820ee48c29e847d05a
|
|
Change-Id: I98aa2bcb90385096915c9cddea6a9e68ab95d29c
|
|
Change-Id: Id54d9bd2963573c4b8e77de0dfafe33ea5882d32
Signed-off-by: Marcos Paulo de Souza <marcos.souza.org@gmail.com>
Reviewed-on: https://gerrit.libreoffice.org/947
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
|
|
use plain copy instead of git-new-workdir when using --with-linked-git
configure switch (point it to your master copy of the core-repo)
also remove obsolete bin/create_bootstrap_links, bin/mkworkdir and
bin/repo-list[.in]
Change-Id: I37028badf2c46a24a3d628e80476efe4dd365d06
Reviewed-on: https://gerrit.libreoffice.org/912
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
|
|
Change-Id: Ibb9bbf018e4e9c1487ccdf6505a2a15d7c24eb24
|
|
Project: help eab79dba5c42eaeb6ecac4a9b6eeb0e6500f3301
update macro dialog help ids for .ui
|
|
Change-Id: Ia283f2e70fa623d0155b6de51ad5441163505cc0
Signed-off-by: Marcos Paulo de Souza <marcos.souza.org@gmail.com>
Reviewed-on: https://gerrit.libreoffice.org/945
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
|
|
MSVC warns about the anonymous struct, and the way we write and read
from the union is undefined.
Change-Id: I683f54d90393a744e5c94857cd87800bcc8f9ffe
|
|
These cause valgrind warnings in sc_unoapi.
(regression from d2b49b5b9bffdfa34174af96d85a392fde21fae1)
Change-Id: If3128410bfabc23ff85c24156a8602379b8b7edd
|
|
Change-Id: Id488ffa6a6b01937fe32e4c80af45c40ebf673ec
|
|
Change-Id: Id7f1471b49af52e6f6b0515ccd1fe8e12c50d9b5
|
|
Change-Id: I4cb64ae2b2f2dbf643e38c5208eb759f265acafd
|
|
LO builds GLib, gdk-pixbuf and Pango using their ancient nmake-based
build mechanisms (that use the make.msc from GLib's build/win32
directory). This compiles against the debugging runtime (the -MDd
switch, msvcr90d.dll) if there is a DEBUG environment variable. We
don't want that. None of LO's own DLLs should use the debugging
runtime even in an --enable-debug build, and the debugging runtime
doesn't get included in the installer.
Change-Id: I04d2dcc0d5bb245af4afac976b6c1fecbf2095e1
|
|
Due to an insane amount of ridiculous "user-defined" number formats the
internal table may overflow during import, stave off and increase the
number of available slots to another arbitrary limit.
|
|
...in favor of existing new-style configuration::theDefaultProvider singleton.
Theoretically, ConfigurationProvider instances can be created with specific
Locale and EnableAsync arguments, but this is hardly used in practice, and thus
effectively all uses of the ConfigurationProvider service use the
theDefaultProvider instance, anyway.
theDefaultProvider is restricted to the XMultiServiceFactory interface, while
ConfigurationProvider also makes available XComponent. However, dispose must
not be called manually on theDefaultProvider singleton anyway, and calls to
add-/removeEventListener are so few (and in dubious code that should better be
cleaned up) that requiring an explicit queryInterface does not really hurt
there.
This commit originated as a patch by Noel Grandin to "Adapt
configuration::ConfigurationProvider UNO service to new style [by creating] a
merged XConfigurationProvider interface for this service to implement." It was
then modified by Stephan Bergmann by deprecating ConfigurationProvider instead
of adding XConfigurationProvider and by replacing calls to
ConfigurationProvider::create with calls to theDefaultProvider::get.
Change-Id: I9c16700afe0faff1ef6f20338a66bd7a9af990bd
|
|
After 047bc54675193bb10a74b865a057fc0438fb824c it is no longer triggered
by rsvg alone, so I guess this is the right way to get system glib on migw again.
|
|
Change-Id: Ie8a6c2a8850ad3dd6cd2be878aedfbf81d2473f7
|
|
Change-Id: I7c7f951b352ed2e9ef7604a5be324223f21e96dd
|
|
Change-Id: I4e83afa3d164ba0ae8640f4b5f2712b88c1e305f
|
|
Change-Id: I5297e4b9480066000bf6d72e54a5d8117528b90c
|
|
Change-Id: I2dfb2fa16c64035ef529cec650df7e4bd9c80483
|
|
The macro AC_CHECK_ALIGNOF does not exist on SLED10
Change-Id: I30fcc8f3715b1855418ea406d0e7b038c7bfb4b3
|
|
Because there may be -g explicitly specified there. This is in line
with using buildsystem's -O/-g flags only if nothing has been explicitly
specified.
Change-Id: If0309b6a7c52de19c4903978108e4e24362d3351
|
|
Change-Id: Icee2ffbe18ea732220f174cd4bf433ceb03d128b
|
|
Change-Id: I81019488c06d83e80ff63f43d416fa0b74be8e15
|
|
Change-Id: Ie809bba726c4d17eac25d36381d93ea9781d74be
|
|
This is a bit hackish and could benefit from further cleanup.
Change-Id: Ibb8eddf88bffdea41fd94fea09ad6499d05ae715
|
|
Change-Id: I8e4dc4c6a727ecb54b1555701d19554f9766d79d
|
|
Change-Id: Ie4ac8f71de1816325f40d8c276b07e9e126a85b5
|
|
UTF8.h is split and renamed to UTF.h
Change-Id: I3c0c271324f79189aa2d10b9f159d2cb5743eb64
|
|
Change-Id: I78a191e39dee00d31ddd773e7b49af73be3136cc
|
|
Change-Id: I3a16f891b099f80bc3a606ed821d7301fc446653
|
|
Change-Id: I5434b6615338dfc6780c6ff877c6eebfd20b763b
|
|
Change-Id: I15dc96c13189d0dc76c616f3ab49d2ea099bc884
|
|
Although the implementation is here, the dialogs to show when clicking
on the menu items aren't there yet.
Change-Id: I14886ec8ea8b97a35ca6c8474bc33e30da1a86d3
|
|
Change-Id: Ibe11358794a3ff714d2e1fafd900cc3262ca266d
|