summaryrefslogtreecommitdiff
path: root/io/source/stm/omark.cxx
AgeCommit message (Collapse)AuthorFilesLines
2015-04-15remove unnecessary use of void in function declarationsNoel Grandin1-30/+30
ie. void f(void); becomes void f(); I used the following command to make the changes: git grep -lP '\(\s*void\s*\)' -- *.cxx \ | xargs perl -pi -w -e 's/(\w+)\s*\(\s*void\s*\)/$1\(\)/g;' and ran it for both .cxx and .hxx files. Change-Id: I314a1b56e9c14d10726e32841736b0ad5eef8ddd
2014-11-17sal: clean up public headers with include-what-you-useMichael Stahl1-0/+1
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-10-29remove unnecessary 'using namespace rtl' declarationsNoel Grandin1-1/+0
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-05-29remove more unnecesary OUString constructor useNoel Grandin1-5/+5
when throwing exceptions Change-Id: I6edfb6b6745499f802b0e3c0e096a36fb7c32aac
2014-04-23io: sal_Bool->boolNoel Grandin1-2/+2
Change-Id: I136c98cbe15d1c6629028392a9573066320b3a04
2014-04-01Explicitly mark overriding destructors as "virtual"Stephan Bergmann1-2/+2
It appears that the C++ standard allows overriding destructors to be marked "override," but at least some MSVC versions complain about it, so at least make sure such destructors are explicitly marked "virtual." Change-Id: I0e1cafa7584fd16ebdce61f569eae2373a71b0a1
2014-03-26First batch of adding SAL_OVERRRIDE to overriding function declarationsStephan Bergmann1-36/+36
...mostly done with a rewriting Clang plugin, with just some manual tweaking necessary to fix poor macro usage. Change-Id: I71fa20213e86be10de332ece0aa273239df7b61a
2014-03-08coverity#707939 Uninitialized scalar fieldCaolán McNamara1-2/+3
Change-Id: I5cbb4e2fef4361085840c914e26bb494566a4600
2014-03-08coverity#707938 Uninitialized scalar fieldCaolán McNamara1-3/+3
Change-Id: Ic76e70a33ed33a94e06faf0168e9a740c736a19e
2014-02-26cppuhelper: retrofit std::exception into overriding exception specsStephan Bergmann1-72/+72
Change-Id: I56e32131b7991ee9948ce46765632eb823d463b3
2014-02-26Remove visual noise from ioAlexander Wilms1-2/+2
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 Wilms1-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-12-09fdo#54938: Convert io to use cppu::supportsServiceMarcos Paulo de Souza1-22/+3
Change-Id: Id53289a68352558b039e0993b687d0447cea8036 Signed-off-by: Stephan Bergmann <sbergman@redhat.com>
2013-11-05fdo#60698: Merge all libs of io...Marcos Paulo de Souza1-1/+1
creating the libio. All these libraries are always used together, so we can put them together in one single library. This save almost 500 kb of the size of the final library. Change-Id: Ib32fec36cc4eb80ca646ce472c1f1bcdd98ac62b Reviewed-on: https://gerrit.libreoffice.org/6567 Tested-by: LibreOffice gerrit bot <gerrit@libreoffice.org> Reviewed-by: Stephan Bergmann <sbergman@redhat.com> Tested-by: Stephan Bergmann <sbergman@redhat.com>
2013-10-22Bin comments that claim to say why some header is includedTor Lillqvist1-1/+1
They are practically always useless, often misleading or obsolete. Change-Id: I2d32182a31349c9fb3b982498fd22d93e84c0c0c
2013-04-19remove unused component_canUnload functionsMatúš Kukan1-4/+0
Change-Id: Id3f41e2a620c47bb848718d0fc994739be2d64fc
2012-12-01Removal ::rtl:: prefixes and macros in IOJosé Guilherme Vanz1-9/+9
This commit removes some ::rtl:: prefixes and RTL_CONSTASCII_STRINGPARAM, RTL_CONSTASCII_USTRINGPARAM macros in IO. Change-Id: I410016990579e4a05843cfe396832a5fc8435e70 Signed-off-by: José Guilherme Vanz <guilherme.sft@gmail.com> Reviewed-on: https://gerrit.libreoffice.org/1210 Reviewed-by: Olivier Hallot <olivier.hallot@alta.org.br> Tested-by: Olivier Hallot <olivier.hallot@alta.org.br>
2012-07-04re-base on ALv2 code.Michael Meeks1-23/+14
2012-05-04fdo#48253 Expand SAL_STATIC_CAST and SAL_CONST_CASTThomas Arnhold1-4/+4
Change-Id: I50f0887ceb4517d7ef234f970ca2ba679d533382
2012-01-21Removed some unused parameters; added SAL_UNUSED_PARAMETER.Stephan Bergmann1-2/+5
SAL_UNUSED_PARAMETER (expanding to __attribute__ ((unused)) for GCC) is used to annotate legitimately unused parameters, so that static analysis tools can tell legitimately unused parameters from truly unnecessary ones. To that end, some patches for external modules are also added, that are only applied when compiling with GCC and add necessary __attribute__ ((unused)) in headers.
2011-11-27remove include of pch header from ioNorbert Thiebaud1-2/+0
2011-01-24WaE: gcc 4.6.0 various warningsCaolán McNamara1-3/+1
2011-01-06fix typoCaolán McNamara1-1/+1
2011-01-06cppunit: prefer prefix variantCaolán McNamara1-4/+4
2010-10-25micro optimizationsCaolán McNamara1-1/+1
2010-10-14Add vim/emacs modelines to all source filesSebastian Spaeth1-0/+3
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 Rechtien1-4/+1
Microsystems to Oracle; remove CVS style keywords (RCSfile, Revision)
2009-07-10#i103452#: replace PRODUCT by !DBG_UTIL; replace assert by OSL_ASSERT where ↵Mathias Bauer1-8/+2
possible
2008-04-11INTEGRATION: CWS changefileheader (1.10.28); FILE MERGEDRüdiger Timm1-23/+18
2008/03/31 12:33:30 rt 1.10.28.1: #i87441# Change license header to LPGL v3.
2006-09-16INTEGRATION: CWS pchfix02 (1.9.8); FILE MERGEDOliver Bolte1-2/+5
2006/09/01 17:31:25 kaib 1.9.8.1: #i68856# Added header markers and pch files
2006-06-19INTEGRATION: CWS warnings01 (1.7.28); FILE MERGEDJens-Heiner Rechtien1-4/+3
2005/09/22 20:29:30 sb 1.7.28.3: RESYNC: (1.7-1.8); FILE MERGED 2005/09/07 14:14:54 sb 1.7.28.2: #i53898# Made code warning-free. 2005/09/01 08:14:29 sb 1.7.28.1: #i53898# Made code warning-free.
2005-09-07INTEGRATION: CWS ooo19126 (1.7.26); FILE MERGEDRüdiger Timm1-47/+21
2005/09/05 17:14:50 rt 1.7.26.1: #i54170# Change license header: remove SISSL
2004-02-04INTEGRATION: CWS ooo20031216 (1.6.36); FILE MERGEDJens-Heiner Rechtien1-3/+5
2003/12/13 13:54:46 waratah 1.6.36.1: #i1858# test for previous definition of macro to remove warning
2003-04-15INTEGRATION: CWS dbgmacros1 (1.4.4.1.12); FILE MERGEDVladimir Glazounov1-2/+5
2003/04/09 11:58:59 kso 1.4.4.1.12.1: #108413# - debug macro unification.
2003-03-26MWS_SRX644: migrate branch mws_srx644 -> HEADJens-Heiner Rechtien1-2/+8
2002-09-18#102869# available and skipBytes now throw NotConnected exceptions, in case ↵Jörg Budischewski1-3/+15
the input stream has been closed before
2002-07-09#98224# improved exception messages, did some tiding up with errornous ↵Jörg Budischewski1-19/+47
exception specifications
2001-06-22#67468# Added unloading and context supportJörg Budischewski1-26/+13
2000-09-18initial importJens-Heiner Rechtien1-0/+1015