summaryrefslogtreecommitdiff
path: root/desktop
AgeCommit message (Collapse)Author
2013-11-19Use startsWith rest parameterStephan Bergmann
Change-Id: I5ec5f68c13ceb93b4e2cea83ec757b9427b8608d
2013-11-19Consistently accept all cmd line args only in lower caseStephan Bergmann
Change-Id: Ie57814f1e938ee9d909d69a518bed29026cb4963
2013-11-19Consistently warn about all deprecated cmd line args starting with a single -Stephan Bergmann
Change-Id: Ib4cb8939b0b12dd01af3bb845649e5ac5480352b
2013-11-19String function clean-upStephan Bergmann
Change-Id: I0bb807748f67af3ee1210c6df649bc8ae506e090
2013-11-19rhbz#1031989 Accept --pt in addition to deprecated -ptStephan Bergmann
Change-Id: I3593b3fc7e0ad405612216fb07e8632050b75cee
2013-11-19-Werror,-Wunused-variableStephan Bergmann
Change-Id: I46138b946ff38df5366760dbc1999057fee35bd3
2013-11-19convert equalsAsciiL calls to startWith calls where possibleNoel Grandin
Simplify code like: aStr.equalsAsciiL( "%", 1 ) to aStr.startsWith( "%" ) Change-Id: Iee0e4e60b0ae6d567fa8f72db5d616fffbec3c00
2013-11-19remove unnecessary use of OUString constructor when assigningNoel Grandin
change code like aStr = OUString("xxxx"); to aStr = "xxxx"; Change-Id: Ib981a5cc735677ec5dba76ef9279a107d22e99d4
2013-11-19remove most use of RTL_CONSTASCII_USTRINGPARAM macroNoel Grandin
This is largely unnecessary when working with OUString Change-Id: I3cf4d68357a43665d01162ef4a2d5346a45da9be
2013-11-15WaE: C4190 for extern "C" functions returning C++ typeTor Lillqvist
Change-Id: Ic1ac345781782bc4333ae2634f8f819914a0ca6e
2013-11-15-Werror,-Wmismatched-tagsStephan Bergmann
Change-Id: I5388bcf7228b181e429a0d82e9b0968a2ed5a06c
2013-11-15-Werror,-Wlogical-not-parenthesesStephan Bergmann
Change-Id: I7a61ce2b235e7aa566d647fcca2dcfc09799e648
2013-11-15liblibo: expose a C API for ABI reasons, and wrap with C++.Michael Meeks
Change-Id: I7b3bcead05788e663d94724522bfa3f227b15499
2013-11-14make l10n buildable separatelyBjoern Michaelsen
- this renames the 'almost' module target to non-l10n - and adds a l10n target which is intended to only build l10n parts of the product - packagers should then be able to build l10n and non-l10n parts of the product independently, thus: - enable quicker rebuilds - distribution of load - updates to l10n without a full rebuild - security fixes to binaries without rebuilding all l10n - the new targets are called build-l10n-only and build-non-l10n-only - note this is not intended to move a concept of split packages upstream -- while this exsists in distros, the number of test scenarios for this would explode upstream Change-Id: Ib8ccc9bc52718d9b0ebbfee76ad93dc29c260863 Conflicts: filter/Module_filter.mk
2013-11-14Move MediaDescriptor from comphelper to unotoolsStephan Bergmann
...so it will be able to use SvtSecurityOptions internally. Change-Id: Id7433247e8fc53651935578510bedbcca5aa2ac9
2013-11-14-Werror,-Wunused-member-functionStephan Bergmann
Change-Id: I1e91eb89b25aea247bb2d615a14a7d1cdd2b488c
2013-11-14remove unnecessary sal_Unicode casts in various placesNoel Grandin
Change-Id: Ibf04062ca86ed866202d748c3b62a210d30ed6ec
2013-11-11convert OUString compareToAscii == 0 to equalsAsciiNoel Grandin
Convert code like aStr.compareToAscii("XXX") == 0 to aStr.equalsAscii("XXX") which is both easier to read and faster. Change-Id: I448abf58f2fa0e7715dba53f8e8825ca0587c83f
2013-11-11remove unnecessary use of OUString constructor in DESKTOP moduleNoel Grandin
Change-Id: I467334094a621f4bab0ff251267412fb3a0fb4b7
2013-11-08Don't unnecessarily wrap RuntimeExceptionsStephan Bergmann
(and IllegalArgumentException is a RuntimeException now) Change-Id: Ic18f11ff7675878c7f6b5e9ee52453bbb9f1e787
2013-11-08Unwind confusing namespace aliasStephan Bergmann
Change-Id: I08d3e5f71278c7f96adb2db546da5602df84aad8
2013-11-07make the error not a secretCaolán McNamara
Change-Id: I4ee261bd1dc2c63f0b54e19a2684c8bf1c221680
2013-11-07liblibo: share crude URL absolutization, and clean.Michael Meeks
Change-Id: I559eac8626a011644f68f8391631447f15c643eb
2013-11-07liblibo: make liblibreoffice static as it should be.Michael Meeks
The whole purpose of this tiny library is to break dependencies, so requiring it in our library path is a bit silly. Change-Id: Ie0e000b97db87afd57f693e19341eadf97323335
2013-11-07liblibo: fixes and improvements for liblibreofficeChristoph Lutz
fixes for liblibreoffice-Impl (init.cxx): determine outputfilter from file suffix if no filter is provided; ensure that url provided to XStorable.storeToUrl is really an url; improved error handling small improvements in somektest/libtest.cxx: output times required for init, load and save. Change-Id: Ic8b2c0d34cbeae3250c43cac02690e6ec1954ed7
2013-11-05Improve debug outputStephan Bergmann
Change-Id: Ia09e61a37bc485509c604df9279275003050d916
2013-11-04remove redundant calls to OUString constructorNoel Grandin
Change code like this: aStr = OUString("xxxx"); into this: aStr = "xxxx"; Change-Id: I31cb92e21658d57bb9e14b65c179536eae8096f6
2013-11-04pagein-* stuff are for unix onlyNorbert Thiebaud
Change-Id: I8acc125aeeec089f3528cdc43b1475b93f5cde32
2013-11-01fdo#71005 Remove odd "Workaround for automated testing"Stephan Bergmann
...that got added by 62ee5e1a752033344c172ad2380a5f1e2492330a "INTEGRATION: CWS calcshare2: #i85794# workaround for automated testing" but does not make much sense, esp. as all our (subsequent-)checks each use a dedicated, throwaway UserInstallation anyway. Change-Id: I64ca47a7d7ee3c2eb2ab33eebcec5a79a7e3d0df
2013-10-31desktop: stop packaging soffice.bin.manifestMichael Stahl
It was introduced to get newer File Picker dialogs (i#70927) but the special manifest file for that was not actually used for years; LO 3.5 already includes a generic manifest file that is like any other and probably has zero benefit over the manfiest that is embedded in the soffice.bin binary anyway. Change-Id: I0f41f10ecf26201043a8c9964cdfef95bc348eb8
2013-10-30sysui: remove Package_iconsMichael Stahl
- rename main_app.ico to soffice.ico (in case the name is relevant?) - installer: hard-code path to sysui/desktop/icons/soffice.ico Change-Id: Iacd6e28201c3f8e69375e0bfc516542e86131912
2013-10-30sysui: stop delivering icons that are used from SRCDIR alreadyMichael Stahl
Change-Id: I0dfbc23c03f9efe7b0020f15eb7f5312da3e6a80
2013-10-28gbuild: set Package default target to INSTDIRMichael Stahl
Change-Id: I2bc45e4ba63f5faaee7389bcd9d7b3f563503186
2013-10-28fixincludeguards.sh: desktopThomas Arnhold
Change-Id: Iaeba85d313af1840f925fd0536d11ac83545a118
2013-10-25stop looking for Jar files in solverMichael Stahl
Change-Id: I4d2a93fa7395354fbf2893df9e254ab39fa365af
2013-10-24desktop: need only one Package_scriptsMichael Stahl
Change-Id: Ia47d1cc8c2d754f74e281eac82c76fbaf12d8541
2013-10-23convert code to use OUString::endsWithNoel Grandin
Convert places that call aStr[aStr.getLength()-1] == 'x' to use the shorter form aStr.endsWith("x") Change-Id: I1b3a19c0e89b8989cdbeed440f95fc76f9a4b6b6
2013-10-22Remove unnecessary component_getProcessComponentContext C wrapperStephan Bergmann
Change-Id: I9d9f1a542dbbfc461dd27c32b57e4cad5532fab0
2013-10-22fdo#68849 add some header guardsThomas Arnhold
Change-Id: I1cd598fba94e337c2ccad68a4a888743aeb292f0
2013-10-21fdo#68849 add some header guardsThomas Arnhold
Change-Id: I9d25a58f22095689eccc0ac444c163d1e9bee69f Reviewed-on: https://gerrit.libreoffice.org/6364 Reviewed-by: Thomas Arnhold <thomas@arnhold.org> Tested-by: Thomas Arnhold <thomas@arnhold.org>
2013-10-21fdo#51639 soffice.exe --version displays a dialog box with the version numberAndras Timar
Change-Id: I3656c005a23d291bc7cde2bc461e584df342babf
2013-10-20drop unnecessary tools/string includesCaolán McNamara
Change-Id: I4278999b9b7d184c26036bbe9e3b98420f461e8c
2013-10-18Some clean-upStephan Bergmann
Change-Id: I142f9c4e73585272c3028880e40c20f4a056f3c3
2013-10-17fdo#58982 Center the splash screen in dual-monitor setupSamuel Mehrbrodt
The problem was that the position of the screen was not considered. Change-Id: I1b2feb916952a4175bfff0675a884477407a702c Reviewed-on: https://gerrit.libreoffice.org/6119 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2013-10-17Simplify code (VERBOSE was unused)Stephan Bergmann
Change-Id: I281be165fe110fee3e174e96e11cdbc4aa5671e0
2013-10-17Produce empty share/uno_packages/cache/uno_packages/ hier in instdir, tooStephan Bergmann
...though the way to do it is probably somewhat overblown... Change-Id: I9b0da2913e0584eaf7d2ec98d1a29e1d78533d51
2013-10-17Fix quotingStephan Bergmann
Change-Id: Ie2228247f5edc107ed183a25ef30256d8041e000
2013-10-17Scripts need executable bitStephan Bergmann
...or else they would end up non-executable in instdir, now that they are directly copied there via desktop/Package_scripts_install.mk. Change-Id: I8d2add1fd7f13ae9080d2f710b5fbb60d1e8ad1a
2013-10-13Minor refactoring of iOS codeTor Lillqvist
Rename functions so that functions called by the UI layer for actions to happen in the LO layer and functions called by the LO layer for things to happen in the UI layer use different prefixes. Move declarations to the generic <touch/touch.h> and avoid iOS-specific types in the API. Change-Id: Ieb8979065e02a87c4a415c934163265f2790d011
2013-10-11-Werror,-Wunused-variableStephan Bergmann
Change-Id: I4727687b1f359ecf4eb8855b7894bf2a2047ba9d