summaryrefslogtreecommitdiff
path: root/rsc
AgeCommit message (Collapse)Author
2014-04-01coverity#707522 Uninitialized scalar variableCaolán McNamara
Change-Id: Ib655e3763c1d8deb1c10a10616390d5fdefe2291
2014-03-26First batch of adding SAL_OVERRRIDE to overriding function declarationsStephan Bergmann
...mostly done with a rewriting Clang plugin, with just some manual tweaking necessary to fix poor macro usage. Change-Id: I71fa20213e86be10de332ece0aa273239df7b61a
2014-03-14callcatcher: update unused codeCaolán McNamara
Change-Id: If4615e5bcb012321c554f75cd936dbf9b0dbf8ab
2014-03-13coverity#708798 Unused pointer valueCaolán McNamara
Change-Id: Ib27f174b37577a8572fb853a7040de51e95d665e
2014-03-13CurrencyFields cannot be loaded from .src anymoreCaolán McNamara
Change-Id: I3ccdb71e39a13dc8c697d3a52dc693cff10c614d
2014-03-13MetricBoxes cannot be loaded from .src anymoreCaolán McNamara
Change-Id: Id7b44402975ed75171f4475aa64ebd2a3d6bd687
2014-03-13CurrencyBoxes cannot be loaded from .src anymoreCaolán McNamara
Change-Id: I662aab01ecf5f78c4406838118ccea3988060521
2014-03-13DateBoxes cannot be loaded from .src anymoreCaolán McNamara
Change-Id: Ic9d3c73cf67e855dc5931e96bc03014998cce9e0
2014-03-13TimeBoxes cannot be loaded from .src anymoreCaolán McNamara
Change-Id: I1fa101656538c40c402fc8608f33961f293bd58d
2014-03-13MoreButtons cannot be loaded from .src anymoreCaolán McNamara
Change-Id: Ib831895b33323dd478cc125b3bf93c43826ef59d
2014-02-28fdo#63154 Remove unused solar.hAlexandre Vicenzi
Removed from dbaccess. editeng, filter, framwork, formula, lotuswordpro, reportdesing, rsc, uui Conflicts: framework/source/uielement/menubarwrapper.cxx reportdesign/inc/RptDef.hxx uui/source/iahndl.hxx Change-Id: Ia6f1d8679736c3de99bd8060d8a7f76975268273 Reviewed-on: https://gerrit.libreoffice.org/8118 Reviewed-by: Michael Stahl <mstahl@redhat.com> Tested-by: Michael Stahl <mstahl@redhat.com>
2014-02-26Remove visual noise from rscAlexander Wilms
Change-Id: Idc310247ae677687fbfb2912d9e4a0f5e5880190 Reviewed-on: https://gerrit.libreoffice.org/8296 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2014-02-24harmonize Tell() Seek() type.Norbert Thiebaud
Change-Id: I2e472aa0279d0763762d3c660207cd74da512626
2014-02-24Replace exisiting TriState, AutoState with more generic TriStateStephan Bergmann
Change-Id: Ida05478aae5a379775c671e0c2f2851d820d78be
2014-02-10coverity#708799 unused pointer valueNoel Grandin
Change-Id: I141bb64b5e4e2f8624008f12c9551881e91f4fdb
2014-01-28bool improvementsStephan Bergmann
Change-Id: Ib1663b761675eebf9399c4d006b2fc59dd72cb47
2014-01-25coverity#983075 : ressource leakNorbert Thiebaud
Change-Id: I70c0be6be1e880dacbf56aa6b040d6a514ce0f5c
2014-01-10Use boolStephan Bergmann
Change-Id: Id6c1f1d4e4ee7aa29f16ef6930c1eb3d4a3a411f
2014-01-10Be explicit when using bool as integral valueStephan Bergmann
Change-Id: I0712b56dbcf8508876ed6eca5e0f02d85b35af67
2013-12-20typo fixesAndras Timar
Change-Id: Ia5f104bfd707bcf4e159c78ca2764c861fb0b6d9
2013-12-16fdo#72598 Remove SunStudio cruft from code baseJelle van der Waa
Change-Id: I5150eec33228e18e274a8ae4effd3f185851b7f4 Reviewed-on: https://gerrit.libreoffice.org/7103 Reviewed-by: Michael Stahl <mstahl@redhat.com> Tested-by: Michael Stahl <mstahl@redhat.com>
2013-11-23widht -> widthJulien Nabet
Change-Id: I661eeb167a95540a223ce72aac51789daf3767dc
2013-11-22remove unnecessary RTL_CONSTASCII_STRINGPARAMNoel Grandin
A final pass through the code, converting code to use the new OUString and OString methods that can detect string literals. Change-Id: Ifa6382335e5650a1c67e52006b26354e0692c710
2013-11-20remove RTL_CONSTASCII_STRINGPARAM in OString constructorNoel Grandin
Convert code like: OString aKeyName(RTL_CONSTASCII_STRINGPARAM("NDX")); to: OString aKeyName("NDX"); which compiles down to the same code Change-Id: I1780264cae4484fc78f0586b0750c09f2dce135f
2013-11-20remove unnecessary RTL_CONSTASCII_STRINGPARAM in OString::appendNoel Grandin
Convert code like: aOStringBuf.append( RTL_CONSTASCII_STRINGPARAM( " is missing )") ); to: aOStringBuf.append( " is missing )" ); which compiles down to the same code. Change-Id: I3d8ed0cbf96a881686524a167412d5f303c06b71
2013-10-31Convert indexOf->startsWith and lastIndexOf->endsWithNoel Grandin
This is both an optimisation and a cleanup. This converts code like aStr.indexOf("XX") == 0 to aStr.startsWith("XX") and converts code like aStr.lastIndexOf("XXX") == aStr.getLength() - 3 to aStr.endsWith("XXX") Note that in general aStr.lastIndexOf("X") == aStr.getLength() - 1 converts to aStr.isEmpty() || aStr.endsWith("X") so I used the surrounding context to determine if aStr could be empty when modifying the code. Change-Id: I22cb8ca7c2a4d0288b001f72adb27fd63af87669
2013-10-22Bin comments that claim to say why some header is includedTor Lillqvist
They are practically always useless, often misleading or obsolete. Change-Id: I2d32182a31349c9fb3b982498fd22d93e84c0c0c
2013-10-12Simpligy: Bin odd atexit crackTor Lillqvist
Change-Id: Ib7e491ae66525b8ba2555b50fe7c9e1fed150987
2013-10-09CID#707521 unintialized memberCaolán McNamara
Change-Id: Ieb4417ae89718d8c5e9abf77cb3e1830c080ae4e
2013-10-09CID#707522 uninitialized memberCaolán McNamara
Change-Id: Iaadc8ea9f14dc2596f252e2f06a1613e6080f9ff
2013-09-25Revert "More ICU dependencies that are now dragged in"Matúš Kukan
Should be fixed by 913f83ac52629a524c373d2504a0cb349446b371 This reverts commits 4dd261e526f43a364c645e7022c49b61c8001a39 30d7729586a60bef061261e9e59bf44768cc0196 4e2e1ca76f772d4644a21b82f79dfb4412a9c99f
2013-09-23More ICU dependencies that are now dragged inTor Lillqvist
Change-Id: Iec214399f0cd8d5af198ad9080c55e5ee51a353d
2013-09-12CID#441298 use after freeCaolán McNamara
Change-Id: I4fd16f157244fa3406036d0f506c32bed0cf5b8a
2013-09-05getFallbackStrings() with bIncludeFullBcp47 parameterEike Rathke
so the various places that check the full tag first do not have to get it just to delete it again. Change-Id: Ib4e3cf1b16988464db875f1b6ac5cf4a0ab60fe5
2013-08-31fdo#62475 - remove visual noisePhilipp Riemer
This is a follow up commit to - 22d1beb78a475e4846af945afde1c4d6c263b5d6 - 1c7af455ab9345304a7ac48ce2e0310de2ac8a75 Change-Id: I102685391125f3b4f7bdf838f8bd17a2283d558d
2013-08-27callcatcher: update unused code, esp unused Resource based ctorCaolán McNamara
e.g. no ImageRadioButton is now loaded from any res/rsc file, so that ctor and associated code paths can be stripped out Change-Id: Ic4cf19d45adb7c734f150e0b89eef193157a74a7
2013-08-23encapsulate IsoLangEntry againEike Rathke
Change-Id: I66475eb3914b07b4c7a045e295ef77a5de9439d4
2013-08-21finish deprecation of O(U)String::valueOf()Luboš Luňák
Compiler plugin to replace with matching number(), boolean() or OUString ctor, ran it, few manual tweaks, mark as really deprecated. Change-Id: I4a79bdbcf4c460d21e73b635d2bd3725c22876b2
2013-08-20Re-work 8bit characters in source code, or remove them.Michael Meeks
Change-Id: I93e14d4936c0ffbe03425d4a54bb0e09bc62b3e3 Reviewed-on: https://gerrit.libreoffice.org/5550 Tested-by: LibreOffice gerrit bot <gerrit@libreoffice.org> Reviewed-by: Michael Meeks <michael.meeks@suse.com> Tested-by: Michael Meeks <michael.meeks@suse.com>
2013-08-18add some a11y relations and enable translation of msCaolán McNamara
Change-Id: Ib509a7ae62aefc919bdaed269c1605ac6bae9564
2013-08-18convert ancient .sdw documentation to .odtCaolán McNamara
Change-Id: I6a4123818f5e3c33cbec04e19e70c1f6a8b7bba2
2013-08-16callcatcher: update unused code listCaolán McNamara
Change-Id: I84f693aa6747f639bd4ae60a02dd4d8c30b7d029
2013-08-13add a seconds unitCaolán McNamara
Change-Id: I3507caab5cd61c282102ab21bf034ec54e497af3
2013-07-08add degrees and pixels as known spin field unitsCaolán McNamara
Change-Id: I5937843a5c5485f469ef1fb6b5844aa15c33a14d
2013-07-04warning C4805 unsafe mixture of type int and type boolMichael Stahl
It is a mystery what this is supposed to do, but rsc is sort of going away in the mid-term anyway so who cares... Change-Id: If1c1b8216c0429909c0571b3360b6dca97f265c4
2013-07-03module rsc: String, bool and other clean-up.Norbert Thiebaud
Change-Id: I2dcde42e6068631a5a643961a764df86dc63dca2 Reviewed-on: https://gerrit.libreoffice.org/4690 Tested-by: LibreOffice gerrit bot <gerrit@libreoffice.org> Reviewed-by: Norbert Thiebaud <nthiebaud@gmail.com> Tested-by: Norbert Thiebaud <nthiebaud@gmail.com>
2013-06-29Search for char instead of 1 char long string, when possible.Thomas Arnhold
follow-up of a7674482254ee996b1c4fee60f3064778be369aa Change-Id: I25f40c601454c092078307d931333af1bc1447ac
2013-06-28fdo#62699 remove rsc/inc/vclrsc.hxxThomas Arnhold
Change-Id: I8a90bfcfff904d42a529644ae7b6f03d0ac762eb
2013-06-24fdo#43460 sd,rsc,ucb,sdext: use isEmpty()Jelle van der Waa
Change-Id: I7a7a77c26b74078f7fc160fbaa1c8d4e912b844e Reviewed-on: https://gerrit.libreoffice.org/4442 Reviewed-by: Michael Stahl <mstahl@redhat.com> Tested-by: Michael Stahl <mstahl@redhat.com>
2013-05-16Quiet cppcheckJulien Nabet
Change-Id: Ib860b6dc3b7ace5f737d283778827bfb0783b362