summaryrefslogtreecommitdiff
path: root/stoc/test/testregistry.cxx
AgeCommit message (Collapse)Author
2017-08-28Translate German comments/debug strings (leftovers in dirs starmath to sysui)Johnny_M
Translates leftovers found using a custom regex. Additionally translated: - One randomly found comment in /reportdesign - Test strings in /stoc/test (let's see if it works) Change-Id: I5f893c194c4b56b5365700928a3b8b63936d03e2 Reviewed-on: https://gerrit.libreoffice.org/41583 Reviewed-by: Michael Stahl <mstahl@redhat.com> Tested-by: Michael Stahl <mstahl@redhat.com>
2017-05-07revert OSL_ASSERT changesChris Sherlock
Change-Id: I365d140446bd2a62cf8256acbfdd53fe72987380
2017-05-07tdf#43157: convert stoc tests from OSL_ASSERT to assertChris Sherlock
Change-Id: Ibe34f5c62897d753150d7e302767126980a17552
2016-10-01Fix typosAndrea Gelmini
Change-Id: I1e0e6f1b99090f26a6cd657ee9019bf2fa906dd9 Reviewed-on: https://gerrit.libreoffice.org/29436 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2016-02-16use consistent #define checks for the Windows platformNoel Grandin
stage 1 of replacing usage of various checks for the windows platform with the compiler-defined '_WIN32' macro Change-Id: Iece73abdee530937e0737190b1aa97a46cd3075f Reviewed-on: https://gerrit.libreoffice.org/22390 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Michael Stahl <mstahl@redhat.com>
2015-04-09convert REG_ constants to scoped enumNoel Grandin
Change-Id: I11d92218c5e0678d497f8964723033e2bd8b3300
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-08Typos + simple german translationsJulien Nabet
Change-Id: Icc0e9f028b393abb062a880519211be4fcd1d4b3
2014-06-05stoc: remove SAL_THROW macroNoel Grandin
Change-Id: I7443c855a7145837621887030b0d3d01cca2a5ac
2014-05-22stoc: make use of css aliasThomas Arnhold
Change-Id: I1dd85a7b1236cfebd5e653fe6d329968e556364b
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-04remove redundant calls to OUString constructor in if expressionNoel Grandin
Convert code like: if( aStr == OUString("xxxx") ) to this: if( aStr == "xxxx" ) Change-Id: I8d201f048477731eff590fb988259ef0935c080c
2013-06-29remove OUString wrap for string literalsThomas Arnhold
For some functions and all kinds of Exceptions. CannotConvertException CloseVetoException DisposedException EmptyUndoStackException ErrorCodeIOException Exception GridInvalidDataException GridInvalidModelException IOException IllegalAccessException IllegalArgumentException IllegalTypeException IndexOutOfBoundsException NoMasterException NoSuchElementException NoSupportException PropertyVetoException RuntimeException SAXException ScannerException StorageWrappedTargetException UnsupportedFlavorException VetoException WrappedTargetException ZipIOException throwGenericSQLException throwIllegallArgumentException createInstance createInstanceWithContext forName getByName getPackageManager getPropertyValue getUnpackedValueOrDefault getValueByName hasPropertyByName openKey setName setPropertyValue supportsService bash command: for i in `cat list`; do git grep "$i\s*(\s*OUString(\s*\"" -- '*.[hc]xx' | cut -d ':' -f1 | sort -u | xargs sed -i -e "s/\(\<$i\s*(\)\s*OUString(\s*\(\"[^\")\\]*\"\)\s*)\s*/\1\2/g" -e "s/\($i.*\)\"+ /\1\" + /g"; done Change-Id: Iaf8e641b0abf28c082906014f87a183517630535 Reviewed-on: https://gerrit.libreoffice.org/4624 Tested-by: LibreOffice gerrit bot <gerrit@libreoffice.org> Reviewed-by: Thomas Arnhold <thomas@arnhold.org> Tested-by: Thomas Arnhold <thomas@arnhold.org>
2013-04-07mass removal of rtl:: prefixes for O(U)String*Luboš Luňák
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
2013-03-19further OUString cleanupThomas Arnhold
Change-Id: I19954ee5976cb881a5fe73a889c8e04a19b14eb6
2012-06-29re-base on ALv2 code.Michael Meeks
2012-06-02targeted string re-workNorbert Thiebaud
Change-Id: Ia4cf1dcae7d40eca29f84fa7277681d1c1fb61bd
2012-05-07fdo#48391: Remove TEST_ENSHUREGábor Stefanik
Change-Id: Id9fc99aab1515a710374b3364f6136587f95f582
2012-04-06Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operatorSzabolcs Dezsi
2011-12-27catch exception by constant referenceTakeshi Abe
2011-11-27remove include of pch header from stocNorbert Thiebaud
2011-04-18Remove OS/2 support.Francois Tigeot
2011-03-03Remove "using namespace ::rtl"Julien Nabet
2010-12-10RTL_CONSTASCII_USTRINGPARAM in ure 3Gert Faller
2010-12-10RTL_CONSTASCII_USTRINGPARAM in ure 1Gert Faller
2010-10-14Add vim/emacs modelines to all source filesSebastian Spaeth
Fixes #fdo30794 Based on bin/add-modelines script (originally posted in mail 1286706307.1871.1399280959@webmail.messagingengine.com) Signed-off-by: Sebastian Spaeth <Sebastian@SSpaeth.de>
2010-02-12changefileheader2: #i109125#: change source file copyright notice from Sun ↵Jens-Heiner Rechtien
Microsystems to Oracle; remove CVS style keywords (RCSfile, Revision)
2008-10-01CWS-TOOLING: integrate CWS jsc311Vladimir Glazounov
2008-04-11INTEGRATION: CWS changefileheader (1.20.12); FILE MERGEDRüdiger Timm
2008/04/01 15:42:30 thb 1.20.12.2: #i85898# Stripping all external header guards 2008/03/31 07:26:14 rt 1.20.12.1: #i87441# Change license header to LPGL v3.
2007-09-27INTEGRATION: CWS sb76 (1.19.6); FILE MERGEDJens-Heiner Rechtien
2007/09/26 13:23:25 kr 1.19.6.1: fixed: enabled disable parameters etc. - ensured builds warning free on pro as well
2007-07-31INTEGRATION: CWS jsc18 (1.18.30); FILE MERGEDJens-Heiner Rechtien
2007/06/29 11:50:40 jsc 1.18.30.1: #i78460# integrate patch
2006-12-01INTEGRATION: CWS bunoidmap (1.17.12); FILE MERGEDRüdiger Timm
2006/11/08 15:11:11 kr 1.17.12.1: fixed: i71291 - stoc/test does not build
2006-09-16INTEGRATION: CWS pchfix02 (1.16.36); FILE MERGEDOliver Bolte
2006/09/01 17:41:21 kaib 1.16.36.1: #i68856# Added header markers and pch files
2005-09-08INTEGRATION: CWS ooo19126 (1.15.28); FILE MERGEDRüdiger Timm
2005/09/05 17:11:31 rt 1.15.28.1: #i54170# Change license header: remove SISSL
2005-01-13INTEGRATION: CWS cd02 (1.14.50); FILE MERGEDKurt Zenker
2004/11/15 17:29:02 dbo 1.14.50.1: #i24030# general cleanup to make buildable again
2004-02-02INTEGRATION: CWS geordi2q14 (1.13.62); FILE MERGEDJens-Heiner Rechtien
2004/01/30 12:39:19 hr 1.13.62.1: #111934#: merge CWS ooo111fix2
2003-04-23INTEGRATION: CWS uno2 (1.11.42); FILE MERGEDRüdiger Timm
2003/04/08 13:56:30 dbo 1.11.42.1: #107991# UNO shared library component renaming
2003-04-15INTEGRATION: CWS dbgmacros1 (1.11.44); FILE MERGEDVladimir Glazounov
2003/04/10 08:38:23 kso 1.11.44.1: #108413# - debug macro unification.
2002-08-19#i6886#,#101685#: merge OOO_STABLE_1_PORTS (1.10-1.10.10.1) -> HEADJens-Heiner Rechtien
2001-09-11#92074#Daniel Boelzle
2001-07-04modify testJuergen Schmidt
2001-06-22#67468# Added unloading and context supportJörg Budischewski
2001-03-19removed vos dependenciesJoachim Lingner
2001-03-12vos/diagnose.h macros replaced by osl/diagnose.h macrosJoachim Lingner
2001-03-09*** empty log message ***Daniel Boelzle
2001-03-07make changes for runningJuergen Schmidt
2001-02-12Update test files for Mac OS XPatrick Luby
2000-11-08ORealDynamicLoader scratched outDaniel Boelzle
2000-09-18initial importJens-Heiner Rechtien