summaryrefslogtreecommitdiff
path: root/tools
AgeCommit message (Collapse)AuthorFilesLines
2013-01-07Cleanup: #include <tools/gen.hxx>Matteo Casalin4-4/+18
Change-Id: Ic547b4a59102afc8bdbc85ec95ac312e32ef2530 Reviewed-on: https://gerrit.libreoffice.org/1484 Reviewed-by: Michael Stahl <mstahl@redhat.com> Tested-by: Michael Stahl <mstahl@redhat.com>
2013-01-01no non-ordering dependencies on <whatever>/.dirLuboš Luňák1-1/+1
As that'd be like forcing a remake every single time.
2012-12-30add runtime deps for custom targetsDavid Tardon1-2/+1
Change-Id: I49272003ea72c84c9e81bc826820b0ac5f9d5008
2012-12-29Some cppcheck cleaningJulien Nabet1-1/+1
Change-Id: Id027823617d2328b9e827268825812634731a828
2012-12-29Revert "String Cleanup and news OUString methods/constructors"Tor Lillqvist2-104/+13
Broke a unit test and made all tinderboxes red. This reverts commit 3179055dc3e267c961a5618c810fbc0df1858d72.
2012-12-28String Cleanup and news OUString methods/constructorsRicardo Montania2-13/+104
Change-Id: Ia6142020330d0e12650fdc519b66f00e607eac42 Reviewed-on: https://gerrit.libreoffice.org/1491 Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com> Tested-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
2012-12-27Check for __GNUC__ instead of GCC in sourcesTor Lillqvist1-1/+1
We still have checks for $(COM) being GCC or MSC in makefiles, of course. But there is no reason to pass -D$(COM) to compilations. Checking the built-in compiler-specific macros __GNUC__, _MSC_VER (etc) is the right thing to do. Change-Id: Ia961a29ba74e2c4977e5300a92318f38104c6592
2012-12-27Check for _MSC_VER instead of MSC in sourcesTor Lillqvist1-1/+1
Change-Id: Ibaf2501e6b655913963a53c1cd63668f1c4cccb2
2012-12-25Get rid of (most uses of) GUITor Lillqvist1-1/+1
GUI only takes values UNX or WNT, so it is fairly pointless. One can check whether OS is WNT or not instead. Change-Id: I78ae32c03536a496a563e5deeb0fca78aebf9c34 Reviewed-on: https://gerrit.libreoffice.org/1304 Reviewed-by: Peter Foley <pefoley2@verizon.net> Tested-by: Peter Foley <pefoley2@verizon.net>
2012-12-17remove unused ifndefMarkus Mohrhard2-4/+0
Change-Id: I759d2c7cea6a27fe676d1c1a17586445aa013ee9
2012-12-17UniString::Fill -> OUStringBuffer::padToLengthCaolán McNamara2-32/+0
none of these strings starts out before "Fill" longer than the size they are asked to be filled to so there are no trailing unfilled bits to consider all of which means that we can get rid of UniString::Fill now Change-Id: I8da21e9787017da9243a2c1d7118d3fbcca2a7fb
2012-12-14callcatcher: update unused code listCaolán McNamara2-56/+2
Change-Id: Ie975cd2df17461de1bb94a23d4daf081f6588fe7
2012-12-13whitespace cleanupNoel Grandin1-17/+17
Since I'm hacking in this file anyhow, make the class definition a little prettier. Change-Id: Id47f1084fe103e85cf1dacc84a9e536774767e61
2012-12-13make the "inline" method attributes match with the method definition.Noel Grandin1-23/+23
And make the whitespace layout a little cleaner. Change-Id: I12b042600f061e74825de92ce836ee34ebdfabdb
2012-12-10Replacing '__LOADONCALLAPI' with 'SAL_CALL' definitionChristos Strubulis1-6/+0
Change-Id: I692a9cfdca5ad50170eea2178a6aa87e8154b951
2012-12-10callcatcher: remove unused rtf filter and associated methodsCaolán McNamara2-6/+0
update and remove newly unused code, mostly original rtf filter Change-Id: I2dd302851ee6fad62d79fbc81cb8a61a861396db
2012-12-06mvoe rtl_(u)string_alloc to salLuboš Luňák1-4/+0
No point in hidding something useful like this in some helper lib. Change-Id: I7332d7f6bd428378cd19e7e95ad130771a541140
2012-12-05Fix commentTor Lillqvist1-1/+1
2012-12-05Bye bye ODMATor Lillqvist2-27/+1
SUSE has no interest in it any longer, and I doubt anybody else has either.
2012-12-03tools String support for fast operator+Luboš Luňák2-1/+29
Change-Id: I13f49a49f86a7097fce115d62271ad82609036f1
2012-12-03ugly hack to avoid virtual method in WindowMarkus Mohrhard1-0/+1
Change-Id: I7ffc13167f5ecbfe3afab6451e1ef52e81130d48
2012-11-28We only support MSVC 2008 (_MSC_VER 1500) or laterTor Lillqvist1-4/+0
We can drop or simplify many conditionals. Change-Id: I37e820e515cc09845c30b62c89ddb3b6ff370f97
2012-11-27added FIXME markersEike Rathke1-0/+6
Change-Id: I7f9b5f9843c6f20fec17cec1e43d49624922b4fe
2012-11-27Simplify SVLIBRARYTor Lillqvist1-19/+9
No need for a __DLLEXTENSION macro that is used nowhere else, and which is in the namespace reserved for the compiler implementation (two initial underscores) even. Just one #ifdef tree is enough. Change-Id: Ib2612ceba385250792c52066a720b220eb294aea
2012-11-21include necessary headerLuboš Luňák1-0/+1
Change-Id: Ibfad213031a2ff07a752cf6b14a2fe35b6e285f4
2012-11-21debug helpers for Point, Size, Rect, etc.Luboš Luňák1-0/+35
I'm kinda tired of typing it out (what kind of imbecile lumps all these classes together into one header and still can't decide whether accessors are Foo() or getFoo() and the capitalization of that?). Change-Id: I15b69280265ae8570378f9f905cca66d546a252c
2012-11-20Enforce use of accessors on gen.hxx structuresMatteo Casalin2-15/+17
Change-Id: Icd1b2937fdeaba6de1877258731f53ddf996002e Reviewed-on: https://gerrit.libreoffice.org/936 Reviewed-by: Michael Stahl <mstahl@redhat.com> Tested-by: Michael Stahl <mstahl@redhat.com>
2012-11-20Bin pointless _SOLAR__PRIVATE which was always 1 anywayTor Lillqvist1-5/+0
Change-Id: I98f35920f02d4ee71787a9968158b220af69bde6
2012-11-19Bin the HACK() sillynessTor Lillqvist3-8/+2
Change-Id: Ieeebc4098404fa006d66bb8b656172a4348b1dc1
2012-11-19Drop ILLEGAL_POINTER sillynessTor Lillqvist1-6/+0
Change-Id: I19316f0fd04f75d980719676c928c3455e0f07b7
2012-11-17callcatcher: remove another layer of binfilter-released methodsCaolán McNamara2-34/+0
Change-Id: Id5bedd660b2ada460ffc48ce28d4f8ab9cd89226
2012-11-16use LanguageTagEike Rathke1-1/+2
Change-Id: I5138eb613ba78c2bc876e45e6845eef4d1212314
2012-11-14callcatcher: more binfilter freed up methodsCaolán McNamara2-68/+0
Change-Id: Iea3716e5c7a21f083f36ce4b8d43ae9fc85227f7
2012-11-14callcatcher: update unused code post binfilter deathCaolán McNamara4-222/+0
Change-Id: I5b25d14ef2769126f98523551597f43812b9feb7
2012-11-09binfilter.die.die.dieNorbert Thiebaud1-7/+0
Change-Id: Ia3c103e4343d309b997ed37e33a382ffdfbddac3 Reviewed-on: https://gerrit.libreoffice.org/1014 Reviewed-by: Tor Lillqvist <tml@iki.fi> Tested-by: Tor Lillqvist <tml@iki.fi>
2012-11-08Revert "Don't export zlib symbols"Jan Holesovsky1-8/+0
Not needed after having fixed the MinGW visibility checks. This reverts commit 2f0b0e54f45cd9694d07d9e0399cd39bc465c09e.
2012-11-07Don't export zlib symbolsFridrich Štrba1-0/+8
Change-Id: Idd90a8ee15e275036f38d0b149ec4a599948e9ba
2012-11-07Documenting results from src code archeology.Thorsten Behrens1-1/+7
Kudos to mst for remembering the Writer core comments from Juergen Pingel.
2012-10-31add missing deps on sal headersDavid Tardon1-1/+4
Change-Id: I815ef8abaf4cd998e7b91fbadad56ddf0a7087ba
2012-10-31CMIS urls: remove +atom in the internal URLS as the binding is guessedCédric Bosdonnat3-9/+9
Change-Id: I9ae0704f1e5203778e97de5843efe777ba717271
2012-10-29fdo#56366: INetURLObject::decode: do not clip utf-32 to 16-bitIvan Timofeev1-2/+2
Change-Id: Iaedc9f5b9f25f43b8b8deaf28129423abbb91672
2012-10-28UniString->rtl::OUStringBufferCaolán McNamara2-31/+1
Change-Id: I9938d7c4ab5594baeb10f405f0aa0964ef84d6c5
2012-10-27sprinkle some more SAL_WARN_UNUSED aroundCaolán McNamara7-11/+11
Change-Id: Iaa1508584f005cba6e2ab63d4053cde4ce8637df
2012-10-27there is no sal_textenc for AndroidMatúš Kukan1-1/+1
Change-Id: I7a55f775cf1b9d608a71e1d754df7027545c1254
2012-10-26tools: add missing dep: dlopened sal_textencMatúš Kukan1-1/+2
Change-Id: I6a1d51e6a1e5e41b9866bc67c2e9707a2bd2e9a4
2012-10-22loplugin: various warningsCaolán McNamara1-1/+1
Change-Id: I605bffb518d804ee69edda5e7641e13e4c14ef01
2012-10-22some more clang warningsCaolán McNamara1-2/+2
Change-Id: I4359784279875dc9dac99bc4d2db95dccf094b20
2012-10-19private field 'eType' is not used [-Werror,-Wunused-private-field]Matúš Kukan1-2/+2
Change-Id: I0c21a0af88eda56a9ccfeeb9691617c67340b3d2
2012-10-19remove unused defineNorbert Thiebaud1-1/+0
Change-Id: Ia000af4680ea5a58db52ca0c341b1a454b3de4c1 Reviewed-on: https://gerrit.libreoffice.org/890 Reviewed-by: Norbert Thiebaud <nthiebaud@gmail.com> Tested-by: Norbert Thiebaud <nthiebaud@gmail.com>
2012-10-14loplugin: fix some indents and unused OUStringsCaolán McNamara1-1/+1
Change-Id: I1d7256eea7a79453d3cdb85d1edcf824d58d775e