Age | Commit message (Collapse) | Author |
|
Change-Id: I4760bc63f61d59c51b6557bf0e3364c1fe0e56be
|
|
Change-Id: Iff58777cfe8422be90fb59189f98a0f34b0aa102
|
|
Change-Id: Ie3ec074292467f096e69142dc599b0e29e1e7f7b
|
|
Change-Id: If368d300c5ed880e1359cbc67df0e13b00fc6ecf
|
|
Change-Id: I5eeb4cbcaa19bdf9bcafc3830447468dd8dc5c8c
|
|
Change-Id: I6728c0f79e0091b88b3269f5b8b25d27c82d9761
|
|
Change-Id: I8c06be7bc0b8a38c662209f0de72a00550e25447
|
|
Fraction used BigInt internally for computations, rational does nothing
like that.
Change-Id: I3e9b25074f979bc291208f7c6362c3c40eb77ff5
|
|
as they were before becoming .ui components to see if that makes
a difference here
Change-Id: I1699e19f14b18579f6b8c973d64f069b206b7cb8
|
|
Change-Id: Ieae67cbf917cdf4bca2b0d6c1697eddc6137dbe2
|
|
from TEParaPortions (through ToolsList, close to be deleted ;).
Change-Id: Iec92ebb54ebc44d94ccc8cb30230ffb44b937b35
Reviewed-on: https://gerrit.libreoffice.org/11954
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
|
|
Change-Id: I0fc00b445db0a6254adbfa335e6971c6787109d5
|
|
...detected with a modified trunk Clang with
> Index: lib/Sema/SemaDeclCXX.cpp
> ===================================================================
> --- lib/Sema/SemaDeclCXX.cpp (revision 219190)
> +++ lib/Sema/SemaDeclCXX.cpp (working copy)
> @@ -1917,9 +1917,10 @@
> const Type *T = FD.getType()->getBaseElementTypeUnsafe();
> // FIXME: Destruction of ObjC lifetime types has side-effects.
> if (const CXXRecordDecl *RD = T->getAsCXXRecordDecl())
> - return !RD->isCompleteDefinition() ||
> - !RD->hasTrivialDefaultConstructor() ||
> - !RD->hasTrivialDestructor();
> + return !RD->hasAttr<WarnUnusedAttr>() &&
> + (!RD->isCompleteDefinition() ||
> + !RD->hasTrivialDefaultConstructor() ||
> + !RD->hasTrivialDestructor());
> return false;
> }
>
> @@ -3517,9 +3518,11 @@
> bool addFieldInitializer(CXXCtorInitializer *Init) {
> AllToInit.push_back(Init);
>
> +#if 0
> // Check whether this initializer makes the field "used".
> if (Init->getInit()->HasSideEffects(S.Context))
> S.UnusedPrivateFields.remove(Init->getAnyMember());
> +#endif
>
> return false;
> }
to warn about members of SAL_WARN_UNUSED-annotated class types, and warn about
initializations with side effects (cf.
<http://lists.cs.uiuc.edu/pipermail/cfe-dev/2014-October/039602.html>
"-Wunused-private-field distracted by side effects").
Change-Id: I3f3181c4eb8180ca28e1fa3dffc9dbe1002c6628
|
|
for non-symbol PDF-Type1 export
Suggested-By: edv@gruene.de
Reviewed-By: hdu@apache.org
(cherry picked from commit b8186703cb43d2b57460cb23a7a4e3f989e95426)
Conflicts:
vcl/source/gdi/pdfwriter_impl.cxx
Change-Id: I02227724bff301133ac8ce5562ec5ca1ed94f136
|
|
Change-Id: Ief903c619204f01784e93fd5e2d582632cef032e
|
|
Change-Id: Ib3763f20d74c22e28d519a9ac47f6f3ab4e31f51
Reviewed-on: https://gerrit.libreoffice.org/11983
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Tested-by: Noel Grandin <noelgrandin@gmail.com>
|
|
Change-Id: Iced928a97afdc30e8cb1e24dd148c8b838e8eb72
|
|
Change-Id: Ide61808dbfa82ce67794150f44b6bac4f3c8e302
|
|
Change-Id: If4359a6b776b4a94a6934e9fd02ede475a0612a7
|
|
Change-Id: I5a90b7c6065829d74c61b833f0551b8adc3f2711
|
|
Change-Id: I96ad50f538cfb6ecd256c4268feb81796a135b2b
|
|
This was some staggering proportion of tiled rendering documents
with complex clipping; it seems 'clear' is not what memset is for
1bit clip masks.
Change-Id: I9142ffb7d7016603feb7782d6f03b9992b9494e3
|
|
Change-Id: Id86dcd2c701510ce15cc2cf71e35c1d908ec6049
|
|
Change-Id: I0f331a2589d0fab5cf3843bf7531333e07067997
|
|
Change-Id: I4af1bd5cd1d614ca92cf843ad7fa5bb518829f89
|
|
for boost::intrusive_ptr
==6595== Conditional jump or move depends on uninitialised value(s)
==6595== at 0xB21664D: intrusive_ptr_release(FontCharMap*) (metric.hxx:226)
==6595== by 0xB2172F6: boost::intrusive_ptr<FontCharMap>::~intrusive_ptr() (intrusive_ptr.hpp:97)
==6595== by 0xB5AE196: FtFontInfo::GetFontCharMap() (gcach_ftyp.cxx:1287)
Change-Id: Iea5ab13b093945c840481f29bc626a16dcbc234b
|
|
Signed-off-by: Stephan Bergmann <sbergman@redhat.com>,
changed from a macro- to a template-based solution. (Unfortunately MSVC 2012
does not support explicit conversion operators. Worked around that with
explicit #ifs rather than some HAVE_EXPLICIT_CONVERSION_OPERATORS and
SAL_EXPLICIT_CONVERSION_OPERATOR ainticipating we hopefully soon move to a
baseline that requires unconditional support for them.)
Change-Id: I4a89643b218d247e8e4a861faba458ec6dfe1396
|
|
Also, print the timing output to stdout, so that one can run the time
command on this, redirecting the program output to /dev/null, and just
see the 'time' output.
Change-Id: I4b2bfe7f0d37746fe0a015b961512850a880560c
|
|
To do this, I've made FontCharMap a friend class for ImplFontCharMap,
and have moved the functions directly into FontCharMap. In this patch,
I am attempting to stop the direct use of ImplFontCharMap by anything
other than FontCharMap. However, FontCharMap itself requires a
refcounter, so we will use FontCharMapPtr to access the font character
map.
Change-Id: I509b990a8cbd911c5cc1572c7d24fc5348ca06d9
Reviewed-on: https://gerrit.libreoffice.org/11823
Reviewed-by: Chris Sherlock <chris.sherlock79@gmail.com>
Tested-by: Chris Sherlock <chris.sherlock79@gmail.com>
|
|
Change-Id: Ia543e5355c8d6a7712bf6f10c989945ff830627d
|
|
Change-Id: I0e61ecfc32f13bba0fa992689604c8b79e6139e9
|
|
Change-Id: Ic92bb6946495124d50e57c2c84995cae6465af92
|
|
Change-Id: I638d1601ac6cb5e43ee60f60869f6128060e6d05
|
|
Change-Id: Ifa46523619ae7fb8d112525b8df594836e51bb8f
Reviewed-on: https://gerrit.libreoffice.org/11843
Tested-by: LibreOffice gerrit bot <gerrit@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
|
|
Because that is after all what we are after here, and we want them even in a
non-debug build.
Change-Id: I4770f6b0420b2a65ccc813f0e400cbb39b0d44fe
|
|
Change-Id: Ibfb77e7d5fb32c317e773851536444679e5b65fa
|
|
Change-Id: I1524722feae3ad9f67627cb34dec83632edefec4
|
|
there's a warning for nPolygonCount but none for nPointCount. I wonder
what happens if I tweak the code like this
Change-Id: I7e1b02c4790f6b2d1c59e38de1a6a0b17a0485b1
|
|
What we want is to test is not loading and displaying many images. It is just
to test just one. So simplify. (Yes, the name 'icontest' is even more
misleading now.)
Check whether the OpenGL context supports non-power-of-two textures, and also
check the maximum texture size, and scale / pad appropriately.
Change-Id: I02bccd33e08749d972652173a881aa40870c12d8
|
|
Change-Id: Ia201473c84dc0923e8f4bee6329ad926cd6addd6
|
|
Change-Id: I9a8ead19e6caa33d7941f11d0d9b5a1ad98ed661
|
|
Change-Id: Ic1571d24a8a696dc24b899d262b9e560d005ee88
|
|
Change-Id: Ifde395113524df03a2523115ab2234403d405455
|
|
Change-Id: Id680f6031d40f086e74472d14fbf70cbf8cc43a1
|
|
Change-Id: I4fc951e21915f7cbb03ee10fd2c9c4977a2f510a
|
|
Change-Id: Ibee999fada60eed067d0d4e44a94294084529294
|
|
Set for menu and float-list-box the PopupModeFlags to
FLOATWIN_POPUPMODE_PATHMOUSECANCELCLICK + FLOATWIN_POPUPMODE_ALLMOUSEBUTTONCLOSE
Improving the comments
Change-Id: I313e4ec38637fa3d46567e08bdb9560ce8475b6a
Reviewed-on: https://gerrit.libreoffice.org/11881
Reviewed-by: Samuel Mehrbrodt <s.mehrbrodt@gmail.com>
Tested-by: Samuel Mehrbrodt <s.mehrbrodt@gmail.com>
|
|
Change-Id: Id1c82638f12514f55f297ec5e4a07444849175ce
|
|
Change-Id: I7c23d9a41c9b517bf8dcdd3e1de2ab24a8a1d0d0
|
|
Change-Id: Ia01404f8d0a5e5aa94d8a9b3f45421950831c5cb
|