- 15 Eki, 2014 36 kayıt (commit)
-
-
Caolán McNamara yazdı
Change-Id: Icaa9b84aa0c3617248d8e52fcccfca928accaea1
-
Caolán McNamara yazdı
etc. Change-Id: I588d4486071b1e31897d4e6468a2c634d6856832
-
Caolán McNamara yazdı
Change-Id: Id6b14366d11c15ec1440482cfb725e497807fa2e
-
Caolán McNamara yazdı
Change-Id: I0fc00b445db0a6254adbfa335e6971c6787109d5
-
Caolán McNamara yazdı
and coverity#706330 Uncaught exception Change-Id: I105e37c88654cf47b50fe6b260b8994622305dab
-
Caolán McNamara yazdı
and coverity#706317 Uncaught exception Change-Id: Idd01f4ba68b1ce6590d6c7b79bcff9593f0766ea
-
Caolán McNamara yazdı
related coverity#1242504 Resource leak but it still leaks a dlopen handle here of course Change-Id: Iaf692e7b2753c1c0af580e236bc147dc30a39e9f
-
David Tardon yazdı
Change-Id: I583e49180b37705ea124c0d88c2e2a8cb1470dfe
-
David Tardon yazdı
Change-Id: I88290e5ccfd6ab250fe1526e452609e6de020dcd
-
Stephan Bergmann yazdı
Change-Id: I39df464321685ebef29f44221bab9005295d0c3f
-
Stephan Bergmann yazdı
...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
-
Herbert Dürr yazdı
for non-symbol PDF-Type1 export Suggested-By: edv@gruene.de Reviewed-By: hdu@apache.org (cherry picked from commit b8186703) Conflicts: vcl/source/gdi/pdfwriter_impl.cxx Change-Id: I02227724bff301133ac8ce5562ec5ca1ed94f136
-
Caolán McNamara yazdı
Change-Id: Ief903c619204f01784e93fd5e2d582632cef032e
-
Caolán McNamara yazdı
maybe sort of can be considered a regression from commit 733b8319 Date: Tue Jan 5 16:37:41 2010 +0100 swunolocking1: swtypes.hxx: rename frame anchor types enum RndStdIds: rename frame anchor types (FLY_*) to be more intuitive. where if (0 == (pAnchorPos = pAnch->GetCntntAnchor())) bCallMake = sal_False; turned to if (pAnchorPos) bCallMake = sal_False; but there would always be a following de-ref of a potential NULL pAnchorPos which wasn't FLY_AT_PAGE Change-Id: I808b4f178887ab6149e38bab6e36eb68d7a1eb29
-
Noel Grandin yazdı
Change-Id: I0ccdd2ce18336afea67a3f296b26b2de50f14808
-
Noel Grandin yazdı
Change-Id: I96a0d5d7ec3363076b0165f3c540c51ef01b58f3
-
Miklos Vajna yazdı
No need to use fieldmarks for these. Change-Id: I8d2c797f2b00be88e445dab0dd69cb1a9556c02c
-
Miklos Vajna yazdı
See 8c677716 (DOCX drawingML export: if shape has textbox, export its contents as shape text, 2014-06-06). Change-Id: I5b1afae4d1b80c9b225096677f7d7ae77ff90f5b
-
Miklos Vajna yazdı
See 96965fb3 (DOCX drawingML export: don't export textboxes of shapes twice, 2014-06-06). Change-Id: I89c039debeca5f88f172479b9f8ecbaec2dc7bc4
-
Noel Grandin yazdı
Change-Id: Ib3763f20d74c22e28d519a9ac47f6f3ab4e31f51 Reviewed-on: https://gerrit.libreoffice.org/11983Reviewed-by:
Noel Grandin <noelgrandin@gmail.com> Tested-by:
Noel Grandin <noelgrandin@gmail.com>
-
Chris Sherlock yazdı
Change-Id: Iced928a97afdc30e8cb1e24dd148c8b838e8eb72
-
Caolán McNamara yazdı
this look very wrong, surely this is what was meant Change-Id: I461fc1a67770c733aee2f4379dcc252abd09b641
-
David Tardon yazdı
This is a regression from commit b1d48f0d. Change-Id: Iffd39782c1d1fd7be14f4d657919f704807a40f5
-
Tor Lillqvist yazdı
We use arbitrary tags when logging stuff in our code so we can't use the built-in filtering of adb logcat. Change-Id: I2d607b86bde975c5cbdd17adc22d0fc15076be51
-
Noel Grandin yazdı
these have been unused since we switch to using normal C++ RTTI with the SfxHint subclasses Change-Id: Ia271cfa01d2f49ed335e90f78309cd26d6ec9d8f
-
Adolfo Jayme Barrientos yazdı
Change-Id: I626e3a36426958d7ba1fd320cf8e1a3bf2f3595f Reviewed-on: https://gerrit.libreoffice.org/11980Reviewed-by:
Caolán McNamara <caolanm@redhat.com> Tested-by:
Caolán McNamara <caolanm@redhat.com>
-
Adolfo Jayme Barrientos yazdı
Especially with long translations, the removal of homogeneous-width columns make the dialog’s size more manageable. Fixed capitalization, indentation, and made the dialog non-resizable to remove the Maximize button under Compiz/GNOME and the fat border under XP. The expander will still work. Change-Id: I2fb820ac406afe45a3d5339f574c13902ad48753 Reviewed-on: https://gerrit.libreoffice.org/11942Reviewed-by:
Caolán McNamara <caolanm@redhat.com> Tested-by:
Caolán McNamara <caolanm@redhat.com>
-
Caolán McNamara yazdı
Change-Id: I7691103b5011861d9e84860671be8e46651a27b1
-
Stephan Bergmann yazdı
Change-Id: I363777ff59b1756a15615d3daaa0c95542632361
-
Miklos Vajna yazdı
Change-Id: I33ca88f38210140931b12a05e426d1373243156e
-
http://docs.oracle.com/javase/1.5.0/docs/api/java/util/ArrayList.html#isEmpty() Change-Id: I9a8f4feab9120d2d9fbf845f305380cda9b263bb Reviewed-on: https://gerrit.libreoffice.org/11968Reviewed-by:
Noel Grandin <noelgrandin@gmail.com> Tested-by:
Noel Grandin <noelgrandin@gmail.com>
-
Change-Id: I2154052f89787b6fe17edb2f6e6ea132347b3d13 Reviewed-on: https://gerrit.libreoffice.org/11971Reviewed-by:
Noel Grandin <noelgrandin@gmail.com> Tested-by:
Noel Grandin <noelgrandin@gmail.com>
-
Noel Grandin yazdı
Change-Id: I32d65cfd7a67cd7ebca0f99061293a9ac3398133 Reviewed-on: https://gerrit.libreoffice.org/11970Tested-by:
LibreOffice gerrit bot <gerrit@libreoffice.org> Reviewed-by:
Noel Grandin <noelgrandin@gmail.com>
-
Eike Rathke yazdı
Found when investigating performance bottlenecks of fdo#75486, after the selection is completed ScTabViewObj::getSelection() is called multiple times, each creating a ScCellRangesObj of the range list of filtered ranges, which then is used for ScChildrenShapes::FindSelectedShapesChanges() The duplicated call was introduced with b4133247 but IMHO does not make any sense at all unless it has obscure side effects, it only slows down things even more. Change-Id: I3cee2e3e62c24ad72efb8cc2021e74d0afc70b69
-
Eike Rathke yazdı
Change-Id: I734ff88bc4c0633875c9e9c19a817b8b08511c83
-
Eike Rathke yazdı
Change-Id: Id2114652948d12c92b0e7be7afa304bfffc8fbe0
-
- 14 Eki, 2014 4 kayıt (commit)
-
-
Michael Meeks yazdı
Change-Id: Ide61808dbfa82ce67794150f44b6bac4f3c8e302
-
Michael Meeks yazdı
Change-Id: If4359a6b776b4a94a6934e9fd02ede475a0612a7
-
Michael Meeks yazdı
Change-Id: I5a90b7c6065829d74c61b833f0551b8adc3f2711
-
Michael Meeks yazdı
Change-Id: I96ad50f538cfb6ecd256c4268feb81796a135b2b
-