summaryrefslogtreecommitdiff
path: root/shell
AgeCommit message (Collapse)Author
2015-03-31Reduce to static_cast any reinterpret_cast from void pointersStephan Bergmann
Change-Id: I443d86e9805dd994006d8bde6dabd72e14a2cff5
2015-03-29loplugin:cstylecastStephan Bergmann
Change-Id: I8bb20f4ce9c8cca3b70057cd8c4fb23819fa3b23
2015-03-28Clean up C-style casts from pointers to voidStephan Bergmann
Change-Id: Iaae87d77ea48207c3277e7107b339296f6a99772
2015-03-27Small fix for BSD.Pedro Giffuni
Part of Code Review: https://reviews.freebsd.org/D2055 Author: Don Lewis (truckman at FreeBSD) (cherry picked from commit ecebe457c968bfd30a99a435210b0bdbb117faef)
2015-03-26const_cast: convert some C-style casts and remove some redundant onesStephan Bergmann
Change-Id: I84b3843b32bbec6dfe5a9c627927b04122d50abd
2015-03-25Typo: formated->formattedJulien Nabet
Change-Id: Iefd4d375a0dfb36732233852f906c6b85dccc2a5
2015-03-25remove exit 0 at the end of a shell scriptPhillip Sz
Change-Id: I6f9b6aa7abba6eadf4db93506bdd9a822afdf2fb Reviewed-on: https://gerrit.libreoffice.org/14884 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
2015-03-24Fix various Windows-only XServiceInfo implementationsStephan Bergmann
...to match what is recorded in the .component files Change-Id: Ibc5bb0575f3869317e4d14614cf1dad0af728ddc
2015-03-19No need to use -I$(SRCDIR)/include/shellTor Lillqvist
We always use -I$(SRCDIR)/include, and the #include statements use <shell/*.h>. Change-Id: I62d32b3a1bd0840f3a4bb149c5552c2aed98cb56
2015-03-17Fix various XServiceInfo implementationsStephan Bergmann
...to match what is recorded in the .component files Change-Id: Ie548cd37872d3b8540222201afaac73040e65c8f
2015-03-11V512: we want the number of wide-chars here, not the number of bytesCaolán McNamara
Change-Id: I121cdfd586562b9ce298448f51d0b2e3b2a52c39
2015-03-11leak on short readCaolán McNamara
Change-Id: I5da7ec2992f9f0b20aa075ee33d0b882cdf91901
2015-03-11V668 no sense in testing the result of new against nullCaolán McNamara
Change-Id: I4a33bd92fc8448638a4bfe1eab7e5041a4c5cc39
2015-03-09V801: Decreased performanceCaolán McNamara
Change-Id: Id8cd45d2844c121f63684734ab3546c24a1aab32
2015-03-05shell: warning C4996 function call with parameters that may be unsafeMichael Stahl
Change-Id: Id70289b0c88dd203cac6301303fe7452088f60f9
2015-03-05gbuild: set _WIN32_WINNT globally instead of WINVERMichael Stahl
... and remove the definitions in makefiles, except in fpicker, which defines a different value for the Vista file picker. The WINVER value is derived automatically from _WIN32_WINNT by SDK header sdkddkver.h. Change-Id: I73358a9bf5d070f71821654cae2a29335a754a21
2015-03-05shell: remove unnecessary explicit -D_WIN32_IEMichael Stahl
Change-Id: Ib6d9233e8c322fd7165fce8763bb2a4eee9a7850
2015-03-04V813: Decreased performanceCaolán McNamara
Change-Id: I8a7528366156b288dc422b09cff0d5a32cde3c91
2015-03-01unnecessary wstring -> char* -> wstring conversionMarkus Mohrhard
Change-Id: I21e6036a5156ed62f2c7bff6439c64d0178c96e4
2015-02-23remove unnecessary parenthesis in return statementsNoel Grandin
found with $ git grep -lP 'return\s*\(\s*\w+\s*\)\s*;' Change-Id: Ic51606877a9edcadeb647c5bf17bc928b69ab60e
2015-02-16Add kde4-open-url scriptJan-Marek Glogowski
Adds a KDE4 specific URL processing script. Change-Id: I0116fa95f076a5772e88c616e93de542fe4fe4e4
2015-02-07loplugin:deletedspecialStephan Bergmann
Change-Id: I2a3d9deb9c71bb4dfe3ad9076d7202636001e0bb
2015-02-07fdo#43368 Remove MapiLogon/Logoff calls so simplemail works with WLMAron Budea
Signed-off-by: Michael Stahl <mstahl@redhat.com> Conflicts: shell/source/win32/simplemail/senddoc.cxx Change-Id: I31cac063ffb4afbfde068558ebcf5f66ea34d1a8
2015-01-28remove unused typedefsNoel Grandin
found with some minor modifications to find/find-unused-defines.sh Change-Id: I18cc479adedc7a0dada68a4aeef08300e62631dd Reviewed-on: https://gerrit.libreoffice.org/14194 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
2015-01-23Win SDK 8.1: apparently VersionHelpers.h needs to be included explicitlyMichael Stahl
http://ci.libreoffice.org/job/lo_gerrit_master/495/Gerrit=Gerrit,Platform=Windows/console Change-Id: I0104d448906bd17857b3716856c544e632c1662c
2015-01-20Some more loplugin:cstylecast: shellStephan Bergmann
Change-Id: I8d9846dcfd8b0f686f7321a3e7b7b0d70428723d
2015-01-19try to fix GetVersionEx deprecation warnings from Windows SDK 8.1Michael Stahl
Apparently GetVersionEx() is deprecated now, but the replacement header "versionhelpers.h" does not exist in older SDKs (at least not in 8.0), so try to determine the used SDK version by checking if the Windows 8.1 version constant _WIN32_WINNT_WINBLUE (0x0602) exists. http://msdn.microsoft.com/en-us/library/windows/desktop/dn424972%28v=vs.85%29.aspx Change-Id: Ia9224a8c76823ada7cb294a600046c6a0fc843ad Reviewed-on: https://gerrit.libreoffice.org/14020 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Michael Stahl <mstahl@redhat.com>
2015-01-08brute-force find-and-remove of unused #define constants.Noel Grandin
Change-Id: I7223530ae37297a76654cd00cc1fedb56dbe3adb
2015-01-05spelling: attachement -> attachmentNoel Grandin
Change-Id: I1bb1ad04adec864b594d96711f85b8fcdc1d1ef2
2014-12-23fdo#39440 reduce scope of local variablesMichael Weghorn
This addresses some cppcheck warnings. Change-Id: I404f121ee2e5020359a662f54ffe341f466cd1d5 Reviewed-on: https://gerrit.libreoffice.org/13608 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
2014-12-18shell: Use appropriate OUString functions on string constantsStephan Bergmann
Change-Id: I3b2c0a4200fa953162f40eff49289052962e73d2
2014-12-15shell: Use appropriate OUString functions on string constantsStephan Bergmann
Change-Id: I2647295383085abf8f217693531ef82632eb4c52
2014-11-18cppuhelper: clean up public headers with include-what-you-useMichael Stahl
Change-Id: I41ba46831f24b2960a1fe982b74a2b623e682e0b
2014-11-17give all the open-url scripts the same starting permissionsCaolán McNamara
Change-Id: I35fcb2d73accf20baa96b62d99be6d0a3ebb3ba2
2014-11-17drop gnome-open-url binaryCaolán McNamara
we don't really need it anymore, fallback to our own open-url if there is nothing else to take it Change-Id: I7a4e841a53bda30e29d48b9c34d24af085f1b4b5 Related: coverity#706194 Use of untrusted string value
2014-11-17sal: clean up public headers with include-what-you-useMichael Stahl
Sadly cannot forward declare "struct {...} TimeValue;". rtl/(u)?string.hxx still include sal/log.hxx but removing osl/diagnose.h was painful enough for now... Change-Id: Id41e17f3870c4f24c53ce7b11f2c40a3d14d1f05
2014-11-12Fix common typos. No automatic tools. Handmade…Andrea Gelmini
Change-Id: I1ab4e23b0539f8d39974787f226e57a21f96e959 Reviewed-on: https://gerrit.libreoffice.org/12164 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
2014-11-11O_RDWR and O_CREAT are defined in fcntl.hRichard PALO
Change-Id: I568ee2c3f103777720f6c39340a5915b10aeebb4 Signed-off-by: Michael Stahl <mstahl@redhat.com>
2014-11-11Do as for Linux, borrowed from Gabriele Bulfon <gabriele.bulfon at sonicle.com>Richard PALO
Change-Id: Id15c4b355591678023ae97b1183f8f3a01823084 Signed-off-by: Michael Stahl <mstahl@redhat.com>
2014-11-10that stuff seems to be totally unusedMarkus Mohrhard
Change-Id: Ice7bc99fc5f3d26ced1b7cd5a1dbf29b0e635471
2014-11-07Don't add toolkit related shell packages with headless buildRiccardo Magliocchetti
Change-Id: Ib68bf02ef7065c76ff25f36b8c29a9a4b028b2e0 Reviewed-on: https://gerrit.libreoffice.org/12268 Reviewed-by: Michael Stahl <mstahl@redhat.com> Tested-by: Michael Stahl <mstahl@redhat.com>
2014-11-06Revert "use the new OUString::fromUtf8 method"Stephan Bergmann
This reverts commit 05050cdb23de586870bf479a9df5ced06828d498, not all places that use e.g. OStringToOUString to convert potential UTF-8 are guaranteed to fulfil the prerequisites necessary to use fromUtf8 (and some places like e.g. in codemaker are happy with the best-effort effect of OStringToOUString's OSTRING_TO_OUSTRING_CVTFLAGS).
2014-11-06fdo#82038: senddoc, uri-encode got lost on MacStephan Bergmann
Change-Id: I2f104c64601b22ce3ef078295c7da3cb21a133f9
2014-11-06use the new OUString::fromUtf8 methodNoel Grandin
Change-Id: I771004b7ccab3344a67e827e45bc34c22ffa5f77
2014-10-31scp2: move unix/gnome executables to AutoInstallMichael Stahl
Change-Id: I0e0c3b5e3f130093f430f47c1730580105718c1e
2014-10-31Removed duplicated includesAndrea Gelmini
Change-Id: I5362d997bfa086c9fb1726efcb15132a966684f6 Reviewed-on: https://gerrit.libreoffice.org/12160 Tested-by: LibreOffice gerrit bot <gerrit@libreoffice.org> Reviewed-by: Michael Stahl <mstahl@redhat.com>
2014-10-29remove unnecessary 'using namespace rtl' declarationsNoel Grandin
It turns out that almost none of them were necessary. Change-Id: I1311ed28409c682b57ea8d149bcbaf2c49133e83 Reviewed-on: https://gerrit.libreoffice.org/12133 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
2014-10-08back out more wrong and confusing tools::Time comment changesEike Rathke
Apparently fc04f76336fdf8c96e35382cdeb497e2f939705c used some sed script to change all ... Change-Id: Ie609bd02a2c5d70109fc6185cf4440480f29d8f5
2014-10-02shell (Windows): std::auto_ptr -> std::unique_ptrStephan Bergmann
Change-Id: I44c843c028c2dfcfcea9f6a2196440ca700fc3a8
2014-10-01shell: std::auto_ptr -> std::unique_ptrStephan Bergmann
Change-Id: I6fc7ef7438e1b999b3b65e4e661b9e787a66cf47