summaryrefslogtreecommitdiff
path: root/framework/inc
AgeCommit message (Collapse)Author
2014-12-18framework: Use appropriate OUString functions on string constantsStephan Bergmann
Change-Id: I5da5cd3254102c742021b3e7b4e1f907ca897ca5
2014-12-12framework: Use appropriate OUString functions on string constantsStephan Bergmann
Change-Id: I72bb5ff2ab8a55061072fde567fcc1c4a8e20a2f
2014-12-09changed timers to idleJennifer Liebel
Change-Id: I05ccb8bd73070462edcc911956859aa7967b5901
2014-12-09changed some timer to idleJennifer Liebel
Change-Id: If137dbd80f7260d9507e48709d3f0f14b60a25f6
2014-12-09changed timers to idleJennifer Liebel
Change-Id: I05ccb8bd73070462edcc911956859aa7967b5901
2014-12-09changed some timer to idleJennifer Liebel
Change-Id: If137dbd80f7260d9507e48709d3f0f14b60a25f6
2014-12-09changed timers to idleJennifer Liebel
Change-Id: I05ccb8bd73070462edcc911956859aa7967b5901
2014-12-09changed some timer to idleJennifer Liebel
Change-Id: If137dbd80f7260d9507e48709d3f0f14b60a25f6
2014-11-18cppuhelper: clean up public headers with include-what-you-useMichael Stahl
Change-Id: I41ba46831f24b2960a1fe982b74a2b623e682e0b
2014-11-14fdo#86023 - O[U]String needs a 'clear' methodBrij Mohan Lal Srivastava
Added clear() method to OString and OUString class, Updated appropriate call-sites. Change-Id: I0ba97fa6dc7af3e31b605953089a4e8e9c3e61ac Signed-off-by: Stephan Bergmann <sbergman@redhat.com>
2014-11-12Fix common typos. No automatic tools. Handmade…Andrea Gelmini
Change-Id: I1ab4e23b0539f8d39974787f226e57a21f96e959 Reviewed-on: https://gerrit.libreoffice.org/12164 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
2014-11-11fdo82708 Add missing tooltips to Writer StatusbarSamuel Mehrbrodt
Change-Id: Ie44b8de69b98ebfa789cc8f9a1d8a60b698fc154 Reviewed-on: https://gerrit.libreoffice.org/12368 Reviewed-by: Samuel Mehrbrodt <s.mehrbrodt@gmail.com> Tested-by: Samuel Mehrbrodt <s.mehrbrodt@gmail.com>
2014-10-30Fixed typos. No automatic tools (sed, and so on).Andrea Gelmini
Change-Id: Ia43976d84eede6f699381bc4f3daf89b95e4cb4f Reviewed-on: https://gerrit.libreoffice.org/12150 Reviewed-by: Bryan Quigley <gquigs@gmail.com> Reviewed-by: Michael Stahl <mstahl@redhat.com> Tested-by: Michael Stahl <mstahl@redhat.com>
2014-10-20fdo#84938: replace TIB_ constants with enumNoel Grandin
Change-Id: I435ce2331fb49e7ce9fe97bdfddfaef706759a84 Reviewed-on: https://gerrit.libreoffice.org/12023 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
2014-10-15More -Werror,-Wunused-private-fieldStephan Bergmann
...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
2014-09-30framework: std::auto_ptr -> std::unique_ptrStephan Bergmann
Change-Id: I6ef5e9018d1e33c205eae934c404d3391a4693f2
2014-09-23fdo#82577: Handle WindowNoel Grandin
Put the VCL Window class in the vcl namespace. Avoids clash with the X11 Window typedef. Change-Id: Ib1beb7ab4ad75562a42aeb252732a073d25eff1a
2014-09-12framework: sal_Bool -> boolStephan Bergmann
Change-Id: Ie56d3fe674af048d7aea32f141c5825e4c2aa98b
2014-09-12vcl: It's a close button, there is no such a thing as a 'closer'.Jan Holesovsky
Clean up at least vcl + what depends on that, but unfortunately there are still some "Closer"'s left elsewhere... Change-Id: I019c863d07ee62d701ff01c8d871334012c105f1
2014-09-10Typo: (N|n)ormaly->(N|n)ormallyJulien Nabet
Change-Id: I96d081f394b0b62d99ec1034bf5e99da9aedd9d9
2014-08-23fdo#82577: Handle KeyCodeTor Lillqvist
Put the VCL KeyCode class in the vcl namespace. Avoids clash with the X11 KeyCode typedef. Change-Id: I624c9d937f7c5f5986d313b6c5f060bd8bb7e028
2014-08-18document the swap-on-free idiom usageNoel Grandin
Effective C++, item 17 Change-Id: I5c6f20c9631f1ca86b481a56ef08d578a7addbad
2014-08-15drop TabControl resource loaderCaolán McNamara
Change-Id: Idb909c205dfadaadeb8b98ce08fe2f4286cfce26
2014-08-13update_pchThomas Arnhold
Change-Id: Ic1dae7aac2f4367b4196ba3128c0aea9be1fbbda
2014-08-09framework.hrc: just use the valueThomas Arnhold
Change-Id: Ie3fad127ae834ba722efe1d474ed10e38eb6bf88
2014-08-09remove unused resource definitionsThomas Arnhold
Change-Id: Ie982ad04c084841f04215b3f58705bb9d9544a71
2014-08-01typo: more then -> more thanTakeshi Abe
Change-Id: I2e477d66f25bde7256938ccb1f95ab26add24922
2014-07-29fdo#46037: remove unused comphelper/configurationhelper.hxxAlexandre Vicenzi
Change-Id: I66f9d2912202ba1393d0c65189f8a945bca4fcaa Reviewed-on: https://gerrit.libreoffice.org/10603 Tested-by: LibreOffice gerrit bot <gerrit@libreoffice.org> Reviewed-by: Michael Stahl <mstahl@redhat.com>
2014-07-23AmbigousFilterRequest is only ever extracted, never createdCaolán McNamara
Change-Id: I79c669c1635192199d6ef135e1ab9b48a9e7e63a
2014-07-14coverity#1224998 Uncaught exceptionCaolán McNamara
Change-Id: I96db9ab47b9494a1d71259e93ad393bd70c39d97
2014-07-10improvements to ShareableMutexNoel Grandin
- add some docs - remove unnecessary null checks - improve field name Change-Id: I8299ec0d56ee5d903f05f2790f97f90ca00663cb
2014-07-02Drop unused E_NOEXCEPTIONSStephan Bergmann
Change-Id: I558684352cc99002752d4c5d118a0c46572bd6f0
2014-07-02Drop unnecessary ITransactionManager base classStephan Bergmann
Change-Id: Iebed1d63ff76fdc9b82ce6ce8860592606500e38
2014-06-10-Werror,-Wtautological-undefined-compareStephan Bergmann
Change-Id: Ibd738b91d35a1b82e1e7b078ef73c6f6076dc08a
2014-06-09loplugin: inlinesimplememberfunctionsNoel Grandin
Change-Id: I42119f656ca528286fb25d2d36c0af54b7d04a6b
2014-06-05various: remove SAL_THROW macroNoel Grandin
Change-Id: I9464179a736b91f5bc32eb5e5e89b3b4e3da3494
2014-06-04update_pch: add a bunch of pch filesThomas Arnhold
desktop: 1m51s -> 54s framework: 1m55s -> 1m04s package: 32s -> 16s sdext: 1m31s -> 47s svgio: 32s -> 15s uui: 49s -> 20s vbahelper: 1m44s -> 27s xmlscript: 15s -> 10s xmlsecurity: 45s -> 23s Change-Id: Ia437969c091bf877983ababc5ea2d044bbc0bee0
2014-06-03coverity#1219794 Uncaught exceptionCaolán McNamara
Change-Id: Icc9e5faf9ef15840c359b7766112278094d52dea
2014-06-03coverity#1219801 Uncaught exceptionCaolán McNamara
Change-Id: I372c1891e41510c24daf256d00f3ca98e8a374a9
2014-06-02coverity#1219797 Uncaught exceptionCaolán McNamara
Change-Id: I597fb90d677e7cade71bf6cbf7f7bce9d3bd05f6
2014-05-28update_pchThomas Arnhold
Change-Id: I5316693452427ed76a7738b090de023b110caa40
2014-05-23Prefer cppu::UnoType<T>::get() to ::getCppuType((T*)0) part20Julien Nabet
Change-Id: If87cdfb2c605254f6d69baa4ca5aec09091caa68
2014-05-23coverity#1215383 Uncaught exceptionCaolán McNamara
Change-Id: I568ba1a942acd622611fb53210e303147b77601f
2014-05-23coverity#1215384 Uncaught exceptionCaolán McNamara
Change-Id: I833b8b9532c61f666755ed5e92135da3aeb55f27
2014-05-23coverity#1215385 Uncaught exceptionCaolán McNamara
Change-Id: I765dd9bab26e3736c6b18a291cfd108342644e8e
2014-05-23coverity#1215386 Uncaught exceptionCaolán McNamara
Change-Id: I2eb374a9209cf4bbf9e2b533ec2522bc1efe6468
2014-05-19fix-includes.pl: frameworkThomas Arnhold
Change-Id: I360d2124ece10ca939a45b9307daf760aaefc557
2014-05-15Prefer cppu::UnoType<T>::get() to ::getCppuType((T*)0) part13Julien Nabet
Change-Id: Ieecfd7ccb10c75ac639d0ba8e7cb588607097c2a
2014-05-15Resolves fdo#70681: fixincludeguards.pl: all that's leftThomas Arnhold
Change-Id: I3e51a62710bb46c8255fd228d41d9300c90a1fb5 Reviewed-on: https://gerrit.libreoffice.org/9360 Reviewed-by: Thomas Arnhold <thomas@arnhold.org> Tested-by: Thomas Arnhold <thomas@arnhold.org>
2014-05-14Removed redundant private methods commentsHussian Alamri