summaryrefslogtreecommitdiff
path: root/rsc
AgeCommit message (Collapse)AuthorFilesLines
2013-03-14remove legacy build.pl prj/build.lst files.Michael Meeks1-2/+0
2013-03-14fdo#39445 writing out tools/fsys.hxxKrisztian Pinter2-9/+7
removed unused <tools/fsys.hxx> include from gengal.cxx changed file copying to sal version in htmlex.cxx rewrote OutputFile in rsctools.cxx very minor change in rsc.cxx - instead of creating an empty DirEntry and getting its path, just used "." Change-Id: Ifd57d73847ff271bcb64b12a26a564acc051fcef Reviewed-on: https://gerrit.libreoffice.org/2680 Reviewed-by: Andras Timar <atimar@suse.com> Tested-by: Andras Timar <atimar@suse.com>
2013-03-13more subtle dependencies for cross-compilationMatúš Kukan1-2/+2
Now we build only what we really need for 'build' platform - there is new build-tools make target. The list of tools is in solenv/gbuild/extensions/pre_BuildTools.mk. Also similar is done to some extent for 'host' platform using gb_Module_add_targets_for_build which is ignored for 'host'. Change-Id: I6acd1762b16aca366aac1a0688500f27869cfca2
2013-03-09coverity#705676: fix memory leakMarkus Mohrhard1-4/+7
Change-Id: Ibae1a0d073249ecfbfee0f73473d66bbf2602aff
2013-03-08simplify compareTo (now correct)Thomas Arnhold1-1/+1
Change-Id: Ia4fd2f54d0bda71d472f46949500c0b23ff8e1b7 Signed-off-by: Stephan Bergmann <sbergman@redhat.com>
2013-03-08Revert "simplify some compareTo"Stephan Bergmann1-1/+1
This reverts commit 19020191cbf3e3c7a7bf98d0958d86d931ae687b, s1.compareTo(s2, length-of-s2) is *not* equivalent to s1 == s2
2013-03-08simplify some compareToThomas Arnhold1-1/+1
Change-Id: Ib63cfac8b5f129f31534020fd634750e846e3b98
2013-03-06fdo#60148 Clean up warnings from the Clang compiler pluginnccuong1-15/+15
Change-Id: I08d755677c46c476710ecbd067ed9f7e2f54a671 loplugin: clean warnings: unused variables, incorrect indentation and log area. Reviewed-on: https://gerrit.libreoffice.org/2544 Reviewed-by: Eike Rathke <erack@redhat.com> Tested-by: Eike Rathke <erack@redhat.com>
2013-03-04sal_Bool to boolTakeshi Abe1-1/+1
Change-Id: I8c554fb3faead41c974af9c2a89728bd0bdf5eb6
2013-03-04doubled includesThomas Arnhold2-2/+0
Change-Id: I70ec796188e2388e1e4d699126f7ae817f5ff86e
2013-02-28remove all d.lstMichael Stahl1-0/+0
Change-Id: Icba4218c5f9fe89d183d25ea82a8eae52881f885
2013-02-27Factor out duplicate enums and types from rsc and vcl into one headerTor Lillqvist3-131/+135
The new header is <rsc/rsc-vcl-shared-types.hxx>, but if some other name or location is cleaner, feel free to change. Change-Id: I601923447ff7c1b6cefd71cb2652fcc88d2483d2
2013-02-26this dmake file in rsc was inadvertently addedCaolán McNamara1-0/+0
Change-Id: Ie8a8a8a4a82e3ca0175ac5a0275da6ca1474fa5d
2013-02-23Fix typo accessable/accessibleJulien Nabet1-1/+1
Change-Id: I2f6d00a6361243a52a593acaaf2bf624d8a2730e
2013-02-13Reduce scopeJulien Nabet1-1/+1
Change-Id: I8e62de343021942fd80ed6846bfa5c0b0ee4a347
2013-02-12Some cppcheck cleaningJulien Nabet1-2/+2
Change-Id: I8609949377181f8edb30ac07b2791cfcd079fc7d
2013-02-12Some cppcheck cleaningJulien Nabet1-7/+4
Change-Id: I74ff9d8d116ebfe9ebc302c79a3763eda9c1250f
2013-02-06Some cppcheck cleaningJulien Nabet1-10/+4
Change-Id: I1b80271473166755e8f0afaa7af8ffc7bea394b3
2013-01-27Some cppcheck cleaningJulien Nabet1-5/+2
Change-Id: I7217ab7500de5d8220b85e56aceb6e843bd0769f
2013-01-26gbuild: do not copy boost headers aroundMichael Stahl1-0/+2
- do not use gb_UnpackedTarball_copy_header_files for boost - adapt the optimization in concat-deps.c for new path - use boost_headers in all LinkTargets that require it - add explicit include paths to mysqlc, mysqlcppconn, libvisio, liborcus Change-Id: I0c43e73ed43cc9d2e6bce8faf55e992d655a0bb9
2013-01-21Replaced O[U]String::valueOf( static_cast<> ) with O[U]String::number()Jean-Noël Rouvignac1-1/+1
Change-Id: I2f11f2f15a652a9edc3c7e5b67c854debeed20de Reviewed-on: https://gerrit.libreoffice.org/1784 Reviewed-by: Luboš Luňák <l.lunak@suse.cz> Tested-by: Luboš Luňák <l.lunak@suse.cz>
2013-01-09Some removal/replacement of the String/UniString with OUStringJean-Noël Rouvignac1-1/+1
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-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-11-28We only support MSVC 2008 (_MSC_VER 1500) or laterTor Lillqvist2-5/+1
We can drop or simplify many conditionals. Change-Id: I37e820e515cc09845c30b62c89ddb3b6ff370f97
2012-11-20use LanguageTagEike Rathke1-1/+2
Change-Id: I9aa7ff4a1aedee6fa029e3d94301788be1a3761a
2012-11-20incorrect body alignmentLuboš Luňák4-139/+139
Change-Id: Ie62113f0018e71c984845f1684a4876809b901c4
2012-11-20unused variableLuboš Luňák1-1/+1
Change-Id: Id6de037a510b129799c89dc4a7fdb105ac006b2a
2012-11-14Turn some memmove into memcpy when it is safe to do so.jailletc361-2/+2
Most of the changes are related to newly allocated memory, so we are sure it can not overlap with the source of the copy. Change-Id: Ie6ccf1bbb07b792fb18601a38dfaa55755d14b7d Signed-off-by: jailletc36 <christophe.jaillet@wanadoo.fr> Reviewed-on: https://gerrit.libreoffice.org/1033 Reviewed-by: Tor Lillqvist <tml@iki.fi> Tested-by: Caolán McNamara <caolanm@redhat.com> Reviewed-by: Caolán McNamara <caolanm@redhat.com>
2012-10-17More useless code, "#if 0" blocks in lingucomponent, sal, and rscMarcos Paulo de Souza1-6/+0
Change-Id: I1dda0f2b3bc2bb4a4a877c160026e53a90471d54 Signed-off-by: Marcos Paulo de Souza <marcos.souza.org@gmail.com>
2012-10-12mark lcl_ functions static or rename them if they are not local at allLuboš Luňák1-1/+1
http://lists.freedesktop.org/archives/libreoffice/2012-October/039639.html Change-Id: I1a0e436051d48e7f6224d6f0fc602347df2d4df1
2012-10-01Replace usage of rtl_*Memory with equivalent from string.hArnaud Versini1-3/+2
Change-Id: I50ffc10f007f03c3252ef0196b59b881429cc159 Reviewed-on: https://gerrit.libreoffice.org/734 Reviewed-by: Norbert Thiebaud <nthiebaud@gmail.com> Tested-by: Norbert Thiebaud <nthiebaud@gmail.com>
2012-09-28gbuild: invert handling of standard system libraries:Michael Stahl1-2/+0
Always link in gb_STDLIBS, except when the library explicitly opts out with gb_LinkTarget_disable_standard_system_libs. Change-Id: I489a99114fbfa46d0421a27cf6c7b899dc268a4a
2012-09-28gbuild: replace direct gb_STDLIBS use with ...Michael Stahl1-1/+2
... new gb_LinkTarget_add_standard_system_libs Change-Id: Ib2bc843098db3d8c6822b45a3d21724e67f57d69
2012-09-28gbuild: split uwinapi out of gb_STDLIBSMichael Stahl1-0/+1
Change-Id: I53316e0b9369d806197bccb42cf22d3497af43e7
2012-08-18remove some useless commentsThomas Arnhold1-1/+0
Change-Id: Ied223890539a3407abbed7c7135dfc3de2f2fe48 Reviewed-on: https://gerrit.libreoffice.org/429 Reviewed-by: Philipp Riemer <ruderphilipp@gmail.com> Tested-by: Philipp Riemer <ruderphilipp@gmail.com>
2012-08-14-Werror,-Wunused-private-field (Clang towards 3.2)Stephan Bergmann1-1/+0
Change-Id: Icf1c673acb703e6518f4d65994b76c6374c16f1e
2012-08-08STL'ify UniqueIndexNoel Grandin4-65/+69
Convert the UniqueIndex code from a macro to a C++ template. Also use std::map as the underlying container instead of tools/contnr.hxx. Change-Id: I0b7b37dd7160ae019aaecdacd1e973ac6d8498e2
2012-08-07Remove non-existing forward declarationsThomas Arnhold1-1/+0
Those classes don't exist. So remove friend class operators too. Change-Id: I8e3b32db933dea7cbab86015f0c926df967511f6
2012-07-30Typo ressource -> resourceStephan Bergmann3-5/+5
Change-Id: Id13e7acfbe34eca5e124c9032d36d6f158bfb831
2012-07-26remove unused border stylesIvan Timofeev2-4/+0
Change-Id: I4b01bdaf4fc20a55f2b4e9ebd039220031c03f11
2012-07-02targetted improvement of UNO API includes / usageMichael Meeks1-4/+1
2012-06-25re-base on ALv2 code.Michael Meeks54-1255/+769
2012-06-25removed unused forward declarations of classTakeshi Abe1-1/+0
Change-Id: I814f8bdf4e4015f8e4eea34533db4ed8d6a7496e
2012-06-21re-base on ALv2 code.Michael Meeks5-118/+73
Change-Id: I6c145e984c885c7e06caa1c27bfb354ea49ad9ce
2012-06-19remove some UniString ctorsCaolán McNamara1-10/+10
Change-Id: Ic2e712f4447b733b79d980e178d9d6d9d8bf0e40
2012-06-07nuke dead codeTakeshi Abe1-12/+0
Change-Id: Id9920ea7b82ea178e904f78bbd41ffc434813e0b
2012-05-25WaE: return value of fwrite uncheckedCaolán McNamara1-12/+12
Change-Id: Ib3713290a7dcd4bbbb58232d144e35694653a4a5
2012-05-03WaE: ignoring return value of fwriteCaolán McNamara1-4/+8
Change-Id: I289564b8f41bbae976853aa3994751d3092ff44d
2012-04-29make gbuild the default assumption of build.plBjoern Michaelsen2-1/+0
this removes dmake completely out of the build for migrated modules build.pl now assumes modules to be gbuild, unless there is a prj/dmake file Change-Id: I674a036b182ee13c5ec093e83cb3d38133112d3b