summaryrefslogtreecommitdiff
path: root/io/test/stm
AgeCommit message (Collapse)Author
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-06-02fdo#68849: Add header guards to all include filesJens Carl
added header guards for directories basebmp/, chart2/, cppuhelper/, include/test/, io/test/, sax/test, shell/, writerfilter/, and xmlhelp/ Change-Id: I0e29a9b75c26d71f58aa98986b52f6d3b46015a6 Reviewed-on: https://gerrit.libreoffice.org/9615 Reviewed-by: Thomas Arnhold <thomas@arnhold.org> Tested-by: Thomas Arnhold <thomas@arnhold.org>
2014-05-23Prefer cppu::UnoType<T>::get() to ::getCppuType((T*)0) part20Julien Nabet
Change-Id: If87cdfb2c605254f6d69baa4ca5aec09091caa68
2014-04-22second test should be DataOutputStreamStephan Bergmann
...as <https://gerrit.libreoffice.org/#/c/9007/> "cppcheck: multiCondition, second test should be DataOutputStream" found out for an effective duplicate of this code that got removed with the previous commit "Remove dead test code." Change-Id: Ib7b088f065def2d5e954837d22178521f85c49fe
2014-02-23Remove unneccessary commentsAlexander Wilms
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 most use of RTL_CONSTASCII_USTRINGPARAM macroNoel Grandin
This is largely unnecessary when working with OUString Change-Id: I3cf4d68357a43665d01162ef4a2d5346a45da9be
2013-11-11convert OUString 0==compareToAscii to equalsAsciiNoel Grandin
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 Grandin
Change-Id: Ifb220af71857ddacd64e8204fb6d3e4aad8eef71
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-10-22Bin comments that claim to say why some header is includedTor Lillqvist
They are practically always useless, often misleading or obsolete. Change-Id: I2d32182a31349c9fb3b982498fd22d93e84c0c0c
2013-10-04fdo#46374 replace stardiv in comments where applicableThomas Arnhold
Change-Id: Icd07fba84735325408741ad10864c63ea32a6481
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-03-19automated removal of RTL_CONSTASCII_USTRINGPARAM for quoted OUStringsThomas Arnhold
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 Meeks
2012-06-21re-base on ALv2 code.Michael Meeks
Change-Id: I6c145e984c885c7e06caa1c27bfb354ea49ad9ce
2012-06-02targeted string re-workNorbert Thiebaud
Change-Id: I145731d9f28faf0065f5960f2c5a32f27d8c8620
2012-05-04fdo#48253 Expand SAL_STATIC_CAST and SAL_CONST_CASTThomas Arnhold
Change-Id: I50f0887ceb4517d7ef234f970ca2ba679d533382
2012-02-18Fix typos in commentsElton Chung
2012-02-17remove extraneous qualifiers that break some compilersMariusz Dykierek
2011-12-15catch exception by constant referenceTakeshi Abe
2011-12-11I don't see NO_BSYMBOLIC being used anywhereTor Lillqvist
2011-11-27remove include of pch header from ioNorbert Thiebaud
2011-07-12Remove component_getImplementationEnvironmentMatúš Kukan
2011-04-21Easyhack: Add visibility markup to all component_get* functionsJulien Nabet
2011-03-19Move OSL_ENSURE(sal_False,...) to OSL_FAIL(...)Thomas Arnhold
2010-12-10RTL_CONSTASCII_USTRINGPARAM in ure 1Gert Faller
2010-12-05Remove redundant commentsJ. Graeme Lingard
2010-10-25remvove vos/macros.h usageNorbert Thiebaud
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-17CWS-TOOLING: integrate CWS changefileheader2Vladimir Glazunov
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 Rechtien
Microsystems to Oracle; remove CVS style keywords (RCSfile, Revision)
2010-01-23cmcfixes71: #i108597# fix uninit warningsCaolán McNamara
2009-09-25merge commitMathias Bauer
2009-09-16CWS-TOOLING: integrate CWS l10nframework01Ivo Hinkelmann
2009-07-10#i103452#: replace PRODUCT by !DBG_UTIL; replace assert by OSL_ASSERT where ↵Mathias Bauer
possible
2008-04-11INTEGRATION: CWS changefileheader (1.2.54); FILE MERGEDRüdiger Timm
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 Timm
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 Timm
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 Timm
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 Timm
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 Timm
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 Timm
2008/03/31 12:33:31 rt 1.11.8.1: #i87441# Change license header to LPGL v3.
2007-09-20INTEGRATION: CWS os2port01 (1.5.28); FILE MERGEDVladimir Glazounov
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.
2007-09-20INTEGRATION: CWS os2port01 (1.9.28); FILE MERGEDVladimir Glazounov
2007/07/17 11:39:00 obr 1.9.28.2: RESYNC: (1.9-1.10); FILE MERGED 2006/12/28 15:00:39 ydario 1.9.28.1: OS/2 initial import.
2007-02-06INTEGRATION: CWS ause074 (1.4.40); FILE MERGEDVladimir Glazounov
2007/01/30 12:05:17 hjs 1.4.40.1: #i73801# remove remaining usages of sv[pre].mk
2006-09-16INTEGRATION: CWS pchfix02 (1.3.26); FILE MERGEDOliver Bolte
2006/09/01 17:31:27 kaib 1.3.26.1: #i68856# Added header markers and pch files
2006-09-16INTEGRATION: CWS pchfix02 (1.7.26); FILE MERGEDOliver Bolte
2006/09/01 17:31:26 kaib 1.7.26.1: #i68856# Added header markers and pch files
2006-09-16INTEGRATION: CWS pchfix02 (1.5.26); FILE MERGEDOliver Bolte
2006/09/01 17:31:26 kaib 1.5.26.1: #i68856# Added header markers and pch files
2006-09-16INTEGRATION: CWS pchfix02 (1.9.26); FILE MERGEDOliver Bolte
2006/09/01 17:31:26 kaib 1.9.26.1: #i68856# Added header markers and pch files
2005-09-07INTEGRATION: CWS ooo19126 (1.1.1.1.146); FILE MERGEDRüdiger Timm
2005/09/05 17:14:55 rt 1.1.1.1.146.1: #i54170# Change license header: remove SISSL