summaryrefslogtreecommitdiff
path: root/io/test
AgeCommit message (Collapse)AuthorFilesLines
2014-02-26Remove visual noise from ioAlexander Wilms1-2/+1
Change-Id: I46f8c4f793596b0e6feb2db7b9302b9b6eb9644b Reviewed-on: https://gerrit.libreoffice.org/8273 Tested-by: Caolán McNamara <caolanm@redhat.com> Reviewed-by: Caolán McNamara <caolanm@redhat.com>
2014-02-23Remove unneccessary commentsAlexander Wilms2-2/+2
Change-Id: I939160ae72fecbe3d4a60ce755730bd4c38497fb Reviewed-on: https://gerrit.libreoffice.org/8182 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2013-11-19remove unnecessary use of OUString constructor when assigningNoel Grandin1-3/+2
change code like aStr = OUString("xxxx"); to aStr = "xxxx"; Change-Id: Ib981a5cc735677ec5dba76ef9279a107d22e99d4
2013-11-19remove most use of RTL_CONSTASCII_USTRINGPARAM macroNoel Grandin1-2/+2
This is largely unnecessary when working with OUString Change-Id: I3cf4d68357a43665d01162ef4a2d5346a45da9be
2013-11-11convert OUString 0==compareToAscii to equalsAsciiNoel Grandin1-18/+18
Convert code like: 0 == aStr.compareToAscii("XXX") to aStr.equalsAscii("XXX") which is both clearer and faster. Change-Id: I2e906d7d38494db38eb292702fadb781b1251e07
2013-11-11remove unnecessary use of OUString constructorNoel Grandin1-18/+18
Change-Id: Ifb220af71857ddacd64e8204fb6d3e4aad8eef71
2013-11-04remove redundant calls to OUString constructor in if expressionNoel Grandin1-1/+1
Convert code like: if( aStr == OUString("xxxx") ) to this: if( aStr == "xxxx" ) Change-Id: I8d201f048477731eff590fb988259ef0935c080c
2013-10-22Bin comments that claim to say why some header is includedTor Lillqvist2-2/+2
They are practically always useless, often misleading or obsolete. Change-Id: I2d32182a31349c9fb3b982498fd22d93e84c0c0c
2013-10-04fdo#46374 replace stardiv in comments where applicableThomas Arnhold2-14/+8
Change-Id: Icd07fba84735325408741ad10864c63ea32a6481
2013-06-29remove OUString wrap for string literalsThomas Arnhold3-49/+49
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-03-19further OUString cleanupThomas Arnhold1-1/+1
Change-Id: I19954ee5976cb881a5fe73a889c8e04a19b14eb6
2013-03-19automated removal of RTL_CONSTASCII_USTRINGPARAM for quoted OUStringsThomas Arnhold2-20/+20
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>
2012-07-04re-base on ALv2 code.Michael Meeks8-182/+110
2012-06-21re-base on ALv2 code.Michael Meeks1-23/+14
Change-Id: I6c145e984c885c7e06caa1c27bfb354ea49ad9ce
2012-06-21re-base on ALv2 code.Michael Meeks1-21/+12
Change-Id: Ice06e639213aeb6f7f23cbf4634947dd25613db1
2012-06-02targeted string re-workNorbert Thiebaud4-101/+100
Change-Id: I145731d9f28faf0065f5960f2c5a32f27d8c8620
2012-06-01targeted string re-workNorbert Thiebaud1-14/+14
Change-Id: Ibe5c739c3066f3e706a44b64d4ad775abde9662c
2012-05-04fdo#48253 Expand SAL_STATIC_CAST and SAL_CONST_CASTThomas Arnhold3-6/+6
Change-Id: I50f0887ceb4517d7ef234f970ca2ba679d533382
2012-02-18Fix typos in commentsElton Chung1-1/+1
2012-02-17remove extraneous qualifiers that break some compilersMariusz Dykierek1-2/+2
2011-12-15catch exception by constant referenceTakeshi Abe6-11/+11
2011-12-11I don't see NO_BSYMBOLIC being used anywhereTor Lillqvist1-1/+0
2011-11-27remove include of pch header from ioNorbert Thiebaud7-14/+0
2011-07-12Remove component_getImplementationEnvironmentMatúš Kukan2-9/+1
2011-06-05__cdecl -> SAL_CALLChristina Rossmanith1-5/+1
2011-04-21Easyhack: Add visibility markup to all component_get* functionsJulien Nabet1-2/+2
2011-04-18Remove OS/2 support.Francois Tigeot2-2/+2
2011-03-19Move OSL_ENSURE(sal_False,...) to OSL_FAIL(...)Thomas Arnhold1-1/+1
2011-03-12Move OSL_ENSURE(0,...) to OSL_FAIL(...)Thomas Arnhold1-8/+8
2010-12-10RTL_CONSTASCII_USTRINGPARAM in ure 2Gert Faller1-2/+2
2010-12-10RTL_CONSTASCII_USTRINGPARAM in ure 1Gert Faller5-36/+36
2010-12-05Remove redundant commentsJ. Graeme Lingard1-11/+0
2010-10-25remvove vos/macros.h usageNorbert Thiebaud1-1/+0
2010-10-14Add vim/emacs modelines to all source filesSebastian Spaeth8-0/+22
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-17CWS-TOOLING: integrate CWS changefileheader2Vladimir Glazunov10-42/+10
Notes: split repo tag: ure_ooo/DEV300_m72 split repo tag: ure_ooo/DEV300_m73
2010-02-12changefileheader2: #i109125#: change source file copyright notice from Sun ↵Jens-Heiner Rechtien10-42/+10
Microsystems to Oracle; remove CVS style keywords (RCSfile, Revision)
2010-01-23cmcfixes71: #i108597# fix uninit warningsCaolán McNamara1-3/+3
2009-09-25merge commitMathias Bauer2-0/+4
2009-09-16CWS-TOOLING: integrate CWS l10nframework01Ivo Hinkelmann2-0/+4
2009-07-10#i103452#: replace PRODUCT by !DBG_UTIL; replace assert by OSL_ASSERT where ↵Mathias Bauer2-26/+16
possible
2008-04-11INTEGRATION: CWS changefileheader (1.2.54); FILE MERGEDRüdiger Timm1-23/+18
2008/03/31 12:33:32 rt 1.2.54.1: #i87441# Change license header to LPGL v3.
2008-04-11INTEGRATION: CWS changefileheader (1.4.28); FILE MERGEDRüdiger Timm1-23/+18
2008/03/31 12:33:32 rt 1.4.28.1: #i87441# Change license header to LPGL v3.
2008-04-11INTEGRATION: CWS changefileheader (1.8.28); FILE MERGEDRüdiger Timm1-26/+18
2008/04/01 15:20:42 thb 1.8.28.2: #i85898# Stripping all external header guards 2008/03/31 12:33:32 rt 1.8.28.1: #i87441# Change license header to LPGL v3.
2008-04-11INTEGRATION: CWS changefileheader (1.7.8); FILE MERGEDRüdiger Timm1-23/+18
2008/03/31 12:33:32 rt 1.7.8.1: #i87441# Change license header to LPGL v3.
2008-04-11INTEGRATION: CWS changefileheader (1.6.28); FILE MERGEDRüdiger Timm1-23/+18
2008/03/31 12:33:32 rt 1.6.28.1: #i87441# Change license header to LPGL v3.
2008-04-11INTEGRATION: CWS changefileheader (1.5.14); FILE MERGEDRüdiger Timm1-23/+19
2008/03/31 12:33:31 rt 1.5.14.1: #i87441# Change license header to LPGL v3.
2008-04-11INTEGRATION: CWS changefileheader (1.11.8); FILE MERGEDRüdiger Timm2-46/+36
2008/03/31 12:33:31 rt 1.11.8.1: #i87441# Change license header to LPGL v3.
2008-04-11INTEGRATION: CWS changefileheader (1.11.28); FILE MERGEDRüdiger Timm1-26/+18
2008/04/01 15:20:42 thb 1.11.28.2: #i85898# Stripping all external header guards 2008/03/31 12:33:31 rt 1.11.28.1: #i87441# Change license header to LPGL v3.
2008-04-11INTEGRATION: CWS changefileheader (1.11.14); FILE MERGEDRüdiger Timm1-23/+19
2008/03/31 12:33:31 rt 1.11.14.1: #i87441# Change license header to LPGL v3.
2007-09-20INTEGRATION: CWS os2port01 (1.5.28); FILE MERGEDVladimir Glazounov1-6/+6
2007/07/17 11:39:28 obr 1.5.28.2: RESYNC: (1.5-1.6); FILE MERGED 2006/12/28 15:00:39 ydario 1.5.28.1: OS/2 initial import.