summaryrefslogtreecommitdiffstats
path: root/crashrep
Commit message (Collapse)AuthorAgeFilesLines
* Fix common typos. No automatic tools. Handmade…Andrea Gelmini2014-11-121-2/+2
| | | | | | | Change-Id: I1ab4e23b0539f8d39974787f226e57a21f96e959 Reviewed-on: https://gerrit.libreoffice.org/12164 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
* crashrep: get rid of tmpnam()Norbert Thiebaud2014-11-031-104/+154
| | | | | | | Change-Id: If84d623719058e4b14f224a433253fac4fd47f85 Reviewed-on: https://gerrit.libreoffice.org/12066 Reviewed-by: Michael Stahl <mstahl@redhat.com> Tested-by: Michael Stahl <mstahl@redhat.com>
* remove executable bitsThomas Arnhold2014-08-171-0/+0
| | | | Change-Id: Iec785ae538de81325812b1e6fe33115789b39770
* crashrep: loplugin:unreffunMichael Stahl2014-07-151-68/+0
| | | | Change-Id: I83d4c3ee02e59d40e793288d705c3fd06ebe3219
* Remove unnecessary semicolonsPeter Senna Tschudin2014-05-272-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | A simplified version of the semantic match that finds this problem is follows: (http://coccinelle.lip6.fr/) // <smpl> @r1@ statement S; position p,p1; @@ S@p1;@p @script:python r2@ p << r1.p; p1 << r1.p1; @@ if p[0].line != p1[0].line_end: cocci.include_match(False) @@ position r1.p; @@ -;@p // </smpl> Change-Id: Ib9708d37fbb4c6060f88d5dae3814a2d37b2091e Reviewed-on: https://gerrit.libreoffice.org/9493 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
* Resolves fdo#70681: fixincludeguards.pl: all that's leftThomas Arnhold2014-05-151-3/+3
| | | | | | | Change-Id: I3e51a62710bb46c8255fd228d41d9300c90a1fb5 Reviewed-on: https://gerrit.libreoffice.org/9360 Reviewed-by: Thomas Arnhold <thomas@arnhold.org> Tested-by: Thomas Arnhold <thomas@arnhold.org>
* Remove visual noise from crashrepAlexander Wilms2014-02-255-62/+62
| | | | | | | Change-Id: I9e13aa176cf6ca1d97e52d059423fc59018671f5 Reviewed-on: https://gerrit.libreoffice.org/8249 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
* Targetted text updates, with seasonable changes before l10n freeze.Michael Meeks2013-12-131-1/+1
| | | | Change-Id: If37ef9f68711da3a0aa9a3ba59b111a8a23421df
* Windows: Require at least Windows XP SP2Thomas Arnhold2013-11-201-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Windows XP SP2 is 0x0502, see http://msdn.microsoft.com/en-us/library/aa383745.aspx * If a module changes the Windows SDK version setting, this is done module wide now. So the overall behavior is as before. This seems to be the best compromise for now. * We need at least SP2 because of the bluetooth stuff used in sd/source/ui/remotecontrol. * Now, we require at least Internet Explorer 7.0. IE6 has been outdated for a long time. * Leave StdAfx.h file definitions, as those are Microsoft project specific precompiled header files. * All local definitions of WINVER are removed, because the global WINVER setting makes them obsolete now. To the relation of the three macros: Setting _WIN32_WINNT sets WINVER and NTDDI_VERSION automatically to the same value as _WIN32_WINNT. WINVER and NTDDI_VERSION can be set idenpendently each for itself. Change-Id: Ibcc12493aae4fcaf7bcfda88be99c1b61bc326cb Reviewed-on: https://gerrit.libreoffice.org/6496 Reviewed-by: Thorsten Behrens <thb@documentfoundation.org> Tested-by: Thorsten Behrens <thb@documentfoundation.org>
* remove INPATH and PROEXTMichael Stahl2013-11-071-1/+1
| | | | | | | | | | | | | | - WORKDIR path is just workdir - INSTDIR path is just instdir - WORKDIR_FOR_BUILD is workdir_for_build - INSTDIR_FOR_BUILD is instdir_for_build - replace other usage of INPATH by combination of OS and CPUNAME Change-Id: Ie398387ebd82a968ec2605f2103c55b43a231482 Reviewed-on: https://gerrit.libreoffice.org/6601 Reviewed-by: Tor Lillqvist <tml@collabora.com> Tested-by: Tor Lillqvist <tml@collabora.com> Reviewed-by: Michael Stahl <mstahl@redhat.com>
* remove redundant calls to OUString constructorNoel Grandin2013-11-041-1/+1
| | | | | | | | | Change code like this: aStr = OUString("xxxx"); into this: aStr = "xxxx"; Change-Id: I31cb92e21658d57bb9e14b65c179536eae8096f6
* gbuild: stop using stuff in OUTDIR/unittest/installMichael Stahl2013-10-291-1/+0
| | | | Change-Id: Icdfe1282d5e636a034ee7d1b16b9a113a9b70492
* fix thinkoDavid Tardon2013-10-031-1/+1
| | | | Change-Id: I258d0d43e8a96c8295ec0b34fd4431b172947a27
* Use subfolder names from <config_folders.h>Tor Lillqvist2013-08-181-1/+3
| | | | | | | | Change all instances of hardcoded "program", "share" etc subfolder names to use those from <config_folders.h> instead. In normal builds, the end result will not change. Change-Id: I91c95cd8e482818be67307e889ae6df887763f53
* gbuild: consolidate ULF copypaste in gb_CustomTarget_ulfex_ruleMichael Stahl2013-07-161-7/+5
| | | | Change-Id: I0c5b68f6bc81c7c1c88be2cde42fc06949fff8e7
* mass removal of rtl:: prefixes for O(U)String*Luboš Luňák2013-04-071-3/+3
| | | | | | | | Modules sal, salhelper, cppu, cppuhelper, codemaker (selectively) and odk have kept them, in order not to break external API (the automatic using declaration is LO-internal). Change-Id: I588fc9e0c45b914f824f91c0376980621d730f09
* Remove unused macro "PMAP_CMD"Julien Nabet2013-03-271-6/+0
| | | | Change-Id: I00812388e7abf17e8388f19143f78843f7946405
* Remove unneeded project and projectroot parametersZolnai Tamás2013-03-251-1/+1
| | | | | | | Plus avoid use of Export::sLanguages member outside of the class. Change-Id: I33702816fdb4980d690cfe8fcd8cc3fbd0df1dd8
* removal of RTL_CONSTASCII_USTRINGPARAM for quoted OUStrings declarationsThomas Arnhold2013-03-191-1/+1
| | | | | | | | | s/(OUString\s+[a-zA-Z_][A-Za-z0-9_]*\s*)\(\s*RTL_CONSTASCII_USTRINGPARAM\s*\((\s*"[^")]*?"\s*)\)\s*\)/$1\($2\)/gms Change-Id: Iad20f242c80c4bdc69df17e2d7a69d58ea53654b Reviewed-on: https://gerrit.libreoffice.org/2835 Reviewed-by: Thomas Arnhold <thomas@arnhold.org> Tested-by: Thomas Arnhold <thomas@arnhold.org>
* automated removal of RTL_CONSTASCII_USTRINGPARAM for quoted OUStringsThomas Arnhold2013-03-191-1/+1
| | | | | | | | | | | Done with a perl regex: s/OUString\s*\(\s*RTL_CONSTASCII_USTRINGPARAM\s*\((\s*"[^")]*?"\s*)\)\s*\)/OUString\($1\)/gms Change-Id: Idf28320817cdcbea6d0f7ec06a9bf51bd2c3b3ec Reviewed-on: https://gerrit.libreoffice.org/2832 Reviewed-by: Thomas Arnhold <thomas@arnhold.org> Tested-by: Thomas Arnhold <thomas@arnhold.org>
* remove legacy build.pl prj/build.lst files.Michael Meeks2013-03-141-2/+0
|
* fdo#43460: use isEmpty()Thomas Arnhold2013-03-091-1/+1
| | | | Change-Id: Ia768e684d3cf255239c04d024b35488830cc9fe6
* remove minor.mkMatúš Kukan2013-03-021-1/+1
| | | | | | | | | | Hopefully all stays the same except for vcl/unx/gtk/a11y/atkutil.cxx. Change-Id: I49108007ee6d045f045de86c8654efc7ca5fd3d0 Reviewed-on: https://gerrit.libreoffice.org/2491 Tested-by: LibreOffice gerrit bot <gerrit@libreoffice.org> Reviewed-by: David Ostrovsky <David.Ostrovsky@gmx.de> Tested-by: David Ostrovsky <David.Ostrovsky@gmx.de>
* remove all d.lstMichael Stahl2013-02-281-0/+0
| | | | Change-Id: Icba4218c5f9fe89d183d25ea82a8eae52881f885
* bin PATCH_SO_NAME crackAndras Timar2013-02-282-8/+12
| | | | | | | | | | | In VersionInfo of Windows executables the FileDescription property originally contained 80 times 'x' character. These executables were marked as PATCH_SO_NAME and later the installer maker perl program replaced the xxxxxxxxxxx to the actual file description which was defined in scp2. WHy was it good, I have no idea. The problem was that it happened after postprocess, where we signed the binaries, thus diigital signature became corrupted. It is better to give file descriptions via makefiles. Change-Id: Id5ad4470bb7a6313b33fbba09d72d9a009163a89
* fix translation of crash reporterDavid Tardon2013-02-131-2/+11
| | | | Change-Id: I52cda360116b719bf05776e01bf3d15303eea97d
* let's split this for easier cherry-pickingDavid Tardon2013-02-131-11/+2
| | | | This reverts commit fc65a66de972951946c57c8b01bfd5df46633693.
* fdo#60386 fix l10n of windows shell extensionDavid Tardon2013-02-131-2/+11
| | | | | | Throw in crash reporter as a bonus. Change-Id: Ia1eccd4a3948b3c6d361b341599c7f565cd74cfb
* gbuild: do not copy boost headers aroundMichael Stahl2013-01-261-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
* crashrep: fix conditionals: it used to be built in non-pro tooMichael Stahl2013-01-261-4/+4
| | | | Change-Id: Icf3901024aed39f3b8e280a4fed8244a2b83e80e
* convert crashrep to gbuild and add to tail_buildPeter Foley2013-01-2216-212/+176
| | | | Change-Id: I90cf6c2c5fb806855b7e4fec18c890f7bd2ff6b5
* fix misleading comment.Michael Meeks2013-01-071-1/+1
| | | | Change-Id: I8f56239738742a6dae8cbaf3e6b7075f9db03255
* Some cppcheck cleaningJulien Nabet2012-12-271-6/+4
| | | | Change-Id: Iac1c26d031e8196ef93cb403dc60f07e0eef6380
* We only support MSVC 2008 (_MSC_VER 1500) or laterTor Lillqvist2012-11-281-4/+0
| | | | | | We can drop or simplify many conditionals. Change-Id: I37e820e515cc09845c30b62c89ddb3b6ff370f97
* translations is a source-only moduleAndras Timar2012-10-011-1/+1
| | | | Change-Id: I9fcddfcdfa2d60860a7b016dbb870a3b6e8f3ea4
* use "LibreOffice" as the default value of ProductKey for crashrepTakeshi Abe2012-10-011-1/+1
| | | | | | | Change-Id: I12bab12ad32f4965b55d94dfd2d6fe8894129763 Reviewed-on: https://gerrit.libreoffice.org/721 Reviewed-by: Michael Stahl <mstahl@redhat.com> Tested-by: Michael Stahl <mstahl@redhat.com>
* Remove unused local varsJulien Nabet2012-08-111-1/+0
| | | | Change-Id: I80bd0329e15cb365091ea6f5c7e1ef3559d681fc
* Remove unused definesThomas Arnhold2012-07-021-2/+0
| | | | | | Some of them were commented out for documentation purpose. Change-Id: I29a6b2cbe774b527f0c3a0be5675160817a7f3ce
* Remove unused definesThomas Arnhold2012-07-011-1/+0
| | | | Change-Id: I45e1618dcff920b63b7e21ba9e842eed684114d7
* cleanup malingering vendor name in disabled codeMichael Meeks2012-06-222-29/+20
|
* re-base on ALv2 code.Michael Meeks2012-06-211-20/+17
| | | | Change-Id: I0cba9316e229362fa82a45d9e4d4763a6cf29540
* re-base on ALv2 code.Michael Meeks2012-06-1410-181/+148
|
* make gbuild the default assumption of build.plBjoern Michaelsen2012-04-291-0/+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
* make comment reflect realityCaolán McNamara2012-04-211-23/+2
|
* WaE: crashrep warnings fixedDavid Ostrovsky2012-04-211-2/+10
|
* .txt files don't need executable bitsMichael Stahl2012-03-234-0/+0
|
* replace OpenOffice.org to LibreOffice in registry keysAndras Timar2012-03-231-10/+10
|
* chmod -xTor Lillqvist2012-03-211-0/+0
|
* Added READMEs for modules which used to be in componentsJosh Heidenreich2012-02-081-0/+1
|
* enhance VersionInfo resource of Windows excutablesAndras Timar2011-12-101-6/+2
| | | | | | | | | | | | | | | + added ProductName (a required parameter), It is LibreOffice + CompanyName is configurable, it is $(OOO_VENDOR), that is set --with-vendor configure switch. If not set, then CompanyName is empty string which is fine, too. + Binary file version and FileVersion string show the same value, and version number is sane: main version + subversion + microversion + build number, such as 3.5.0.0 + LegalCopyright text is the same as in the About box, year range can be set in minor.mk - removed archaic and overcomplicated version number calculating macros - removed version.lst, copied relevant content to minor.mk - removed binary RCDATA resources, I don't think they were of any use