summaryrefslogtreecommitdiffstats
path: root/include/svx/numvset.hxx
Commit message (Collapse)AuthorAgeFilesLines
* com::sun::star->css in include/sot to include/typelibNoel Grandin2015-10-231-8/+8
| | | | Change-Id: I9cd92b53370a6b6018d2f7c648890f9c014a27de
* Replace "SAL_OVERRIDE" with "override" in LIBO_INTERNAL_ONLY codeStephan Bergmann2015-10-121-4/+4
| | | | Change-Id: I2ea407acd763ef2d7dae2d3b8f32525523ac8274
* tdf#93558 Hardcode black text on white backgroundMaxim Monastirsky2015-08-271-1/+0
| | | | | | | As agreed in the bug report, a preview shouldn't be themed by the OS theme. Change-Id: Icdc5021c3ac614fe1d490fd513a407a81dbc169e
* loplugin:unusedmethods svx(part2)Noel Grandin2015-07-161-6/+0
| | | | | | | Change-Id: I161360e2f3113c4814fe1c2c095e602b2c93dcd7 Reviewed-on: https://gerrit.libreoffice.org/17120 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
* Convert NUM_PAGETYPE_ to a scoped enumMaxim Monastirsky2015-07-051-2/+10
| | | | Change-Id: Iddc194a0d8f77e307c05bd3dfef1fc30568173c1
* Use typed Idle::SetIdleHdl LinkStephan Bergmann2015-05-051-1/+1
| | | | Change-Id: I189937950325dc4ef663f7f49cb45f38f8537de9
* Move OutputDevice members to VclPtr: starmath, svx.Michael Meeks2015-04-101-1/+1
| | | | Change-Id: I1a5174334f41bc319e0806b9d324be64ba6d0135
* vcl: VclPtr conversion in svx.Noel Grandin2015-04-091-13/+13
| | | | | | | | | | | | | | | | | Change-Id: I3a1000baa049b11728c46efbc2f0af0d8f34cf2b Conflicts: include/svx/charmap.hxx include/svx/float3d.hxx include/svx/fontwork.hxx include/svx/galctrl.hxx svx/inc/svdibrow.hxx svx/source/dialog/dlgctl3d.cxx svx/source/dialog/fontwork.cxx svx/source/engine3d/float3d.cxx svx/source/fmcomp/gridctrl.cxx svx/source/gallery2/galbrws1.cxx svx/source/inc/docrecovery.hxx
* Timer: Adapted all idle includes and enum usesTobias Madl2015-03-061-0/+1
| | | | Change-Id: Id4ef36d6c80ad62306bdbaa7094c2cb0b8ff77da
* changed timers to idlesTobias Madl2014-12-091-2/+2
| | | | Change-Id: Icb6e3e72939ab0d04d9f099f1e476131a223de48
* More -Werror,-Wunused-private-fieldStephan Bergmann2014-10-151-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ...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
* fdo#82577: Handle WindowNoel Grandin2014-09-231-2/+2
| | | | | | | Put the VCL Window class in the vcl namespace. Avoids clash with the X11 Window typedef. Change-Id: Ib1beb7ab4ad75562a42aeb252732a073d25eff1a
* Explicitly mark overriding destructors as "virtual"Stephan Bergmann2014-04-011-2/+2
| | | | | | | | It appears that the C++ standard allows overriding destructors to be marked "override," but at least some MSVC versions complain about it, so at least make sure such destructors are explicitly marked "virtual." Change-Id: I0e1cafa7584fd16ebdce61f569eae2373a71b0a1
* Second batch of adding SAL_OVERRIDE to overriding function declarationsStephan Bergmann2014-03-271-2/+2
| | | | | | | ...mostly done with a rewriting Clang plugin, with just some manual tweaking necessary to fix poor macro usage. Change-Id: Ie656f9d653fc716f72ac175925272696d509038f
* svx: sal_Bool->boolNoel Grandin2014-03-111-6/+6
| | | | Change-Id: Ieb21d01fef7b25fc3b6326108d451fe239c9b461
* fdo#65108 inter-module includes <> include/svxNorbert Thiebaud2013-11-091-1/+1
| | | | Change-Id: I5335182ea16695c77c2855b34c98220aea2befa1
* fixincludeguards.sh: include/svxThomas Arnhold2013-10-231-2/+2
| | | | Change-Id: I2c280be12f36c1538e922286745aabc62482423d
* convert include/svx/numvset.hxx from String to OUStringNoel Grandin2013-09-051-2/+2
| | | | Change-Id: If9b851406a369c343a46c79fea7ee1d391049456
* execute move of global headersBjoern Michaelsen2013-04-231-0/+117
see https://gerrit.libreoffice.org/#/c/3367/ and Change-Id: I00c96fa77d04b33a6f8c8cd3490dfcd9bdc9e84a for details Change-Id: I199a75bc4042af20817265d5ef85b1134a96ff5a