summaryrefslogtreecommitdiff
path: root/dbaccess/source/core/api/CRowSetDataColumn.hxx
AgeCommit message (Collapse)Author
2022-06-13clang-tidy modernize-pass-by-value in dbaccessNoel Grandin
Change-Id: I8f89ec8a73f82fd93320a710165df17180939f96 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135731 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2020-09-13tdf#124176 Use #pragma once in dbaccess/source/coreGeorge Bateman
This commit was carried out by a Python script, source of which is at https://bugs.documentfoundation.org/show_bug.cgi?id=124176#c97. Change-Id: I44efd0f0536df127be57fafc193eeb985292cc22 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/102550 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
2018-03-31loplugin:unnecessaryvirtual improve result outputNoel Grandin
and merge some of the template function results Change-Id: I9a7855ce6720d022ea5b988d68f0d59ff81ee5b9 Reviewed-on: https://gerrit.libreoffice.org/51985 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2018-03-30loplugin:virtualdown in variousNoel Grandin
Change-Id: I4db71fda953ea1d20712ae8033f6fc09b3b2855d Reviewed-on: https://gerrit.libreoffice.org/52068 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2017-12-06loplugin:salcall handle virtual methodsNoel Grandin
Change-Id: Iab95db31188ea2914a46d63a7ebef3d825e6ec42 Reviewed-on: https://gerrit.libreoffice.org/45851 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2017-10-23loplugin:includeform: dbaccessStephan Bergmann
Change-Id: I15aee966012612033ab7e2ee03ac1a553802f540
2017-02-17Drop :: prefix from std in [de]*/Tor Lillqvist
Change-Id: I3247894fe022dce7f0aa351bd85fefcd7c545dd4 Reviewed-on: https://gerrit.libreoffice.org/34377 Reviewed-by: Tor Lillqvist <tml@collabora.com> Tested-by: Tor Lillqvist <tml@collabora.com>
2017-01-26Remove dynamic exception specificationsStephan Bergmann
...(for now, from LIBO_INTERNAL_CODE only). See the mail thread starting at <https://lists.freedesktop.org/archives/libreoffice/2017-January/076665.html> "Dynamic Exception Specifications" for details. Most changes have been done automatically by the rewriting loplugin:dynexcspec (after enabling the rewriting mode, to be committed shortly). The way it only removes exception specs from declarations if it also sees a definition, it identified some dead declarations-w/o-definitions (that have been removed manually) and some cases where a definition appeared in multiple include files (which have also been cleaned up manually). There's also been cases of macro paramters (that were used to abstract over exception specs) that have become unused now (and been removed). Furthermore, some code needed to be cleaned up manually (avmedia/source/quicktime/ and connectivity/source/drivers/kab/), as I had no configurations available that would actually build that code. Missing @throws documentation has not been applied in such manual clean-up. Change-Id: I3408691256c9b0c12bc5332de976743626e13960 Reviewed-on: https://gerrit.libreoffice.org/33574 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
2016-09-13loplugin:override: No more need for the "MSVC dtor override" workaroundStephan Bergmann
The issue of 362d4f0cd4e50111edfae9d30c90602c37ed65a2 "Explicitly mark overriding destructors as 'virtual'" appears to no longer be a problem with MSVC 2013. (The little change in the rewriting code of compilerplugins/clang/override.cxx was necessary to prevent an endless loop when adding "override" to OOO_DLLPUBLIC_CHARTTOOLS virtual ~CloseableLifeTimeManager(); in chart2/source/inc/LifeTime.hxx, getting stuck in the leading OOO_DLLPUBLIC_CHARTTOOLS macro. Can't remember what that isAtEndOfImmediateMacroExpansion thing was originally necessary for, anyway.) Change-Id: I534c634504d7216b9bb632c2775c04eaf27e927e
2015-10-12Replace "SAL_OVERRIDE" with "override" in LIBO_INTERNAL_ONLY codeStephan Bergmann
Change-Id: I2ea407acd763ef2d7dae2d3b8f32525523ac8274
2015-08-03com::sun::star->css in dbaccessNoel Grandin
Change-Id: I4fbdd3fb7d1e0ad4423148aaaed3a15aebb26d14
2015-07-31dbaccess: replace boost::function with std::functionMichael Stahl
Change-Id: I4bea36a9add24f9144c8e222e9ce42c7c9f3678b
2015-04-15remove unnecessary use of void in function declarationsNoel Grandin
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-08-06fdo#82151 when constructing column object, replace m_aCurrentRow by a functionLionel Elie Mamane
The passed m_aCurrentRow becomes out-of-date as soon as the current row changes. This also hides an implementation detail of ORowSet to ORowSet(Data)Column. Change-Id: Ib9188743e5dd6dec240e9f5fd3fd9655c6761abc Reviewed-on: https://gerrit.libreoffice.org/10792 Reviewed-by: Lionel Elie Mamane <lionel@mamane.lu> Tested-by: Lionel Elie Mamane <lionel@mamane.lu>
2014-04-17dbaccess: sal_Bool->boolNoel Grandin
Change-Id: Ieb52470f9638b74898954db3890aaf2cf202290a
2014-03-27Second batch of adding SAL_OVERRIDE to overriding function declarationsStephan Bergmann
...mostly done with a rewriting Clang plugin, with just some manual tweaking necessary to fix poor macro usage. Change-Id: Ie656f9d653fc716f72ac175925272696d509038f
2014-03-22coverity#738610 unused member pointer valueCaolán McNamara
Change-Id: I157c3bb7323767a27ac8a11361e6013bfee1de15
2014-02-26cppuhelper: retrofit std::exception into overriding exception specsStephan Bergmann
Change-Id: I56e32131b7991ee9948ce46765632eb823d463b3
2013-11-05fixincludeguards.sh: dbaccessThomas Arnhold
Change-Id: Iadd4326d58a5df5761a0ed5ce7fd5fb01fb87d11
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
2012-06-14re-base on ALv2 code.Michael Meeks
2010-10-27add modelines to .hxx files as wellCaolán McNamara
2010-10-25merge vosremoval-reference.diffNorbert Thiebaud
2010-10-13Removed comments, trailing spaces and death codeGil Forcada
2010-04-16dba33f: merge with m76-branchFrank Schoenheit [fs]
2010-02-12changefileheader2: #i109125#: change source file copyright notice from Sun ↵Jens-Heiner Rechtien
Microsystems to Oracle; remove CVS style keywords (RCSfile, Revision)
2010-02-08dba33f: #i53377# make property IsReadOnly boundOcke Janssen [oj]
2010-01-22dba33f: #i108548# handle Label property from parse column and rowsetcolumnOcke Janssen [oj]
2009-10-30re-factoring, in preparation of fixing issue #i67020#Frank Schoenheit [fs]
2008-04-10INTEGRATION: CWS changefileheader (1.16.308); FILE MERGEDRüdiger Timm
2008/03/31 13:26:42 rt 1.16.308.1: #i87441# Change license header to LPGL v3.
2006-06-20INTEGRATION: CWS warnings01 (1.14.28); FILE MERGEDJens-Heiner Rechtien
2006/04/07 20:44:52 sb 1.14.28.2: RESYNC: (1.14-1.15); FILE MERGED 2006/03/24 15:35:45 fs 1.14.28.1: #i57457# warning-free code (unxlngi6/.pro + unxsoli4.pro)
2006-01-25INTEGRATION: CWS stlusagefix01 (1.14.16); FILE MERGEDJens-Heiner Rechtien
2006/01/16 13:47:15 oj 1.14.16.1: #i60480# fix stl usage
2005-12-19INTEGRATION: CWS kaddrbook (1.13.56); FILE MERGEDOliver Bolte
2005/12/05 12:15:23 fs 1.13.56.1: #i58879# respect XDatabaseMetaData::getVersionColumns, and translate it into css.sdbcx.Column.IsRowVersion
2005-09-08INTEGRATION: CWS ooo19126 (1.12.104); FILE MERGEDRüdiger Timm
2005/09/05 17:32:00 rt 1.12.104.1: #i54170# Change license header: remove SISSL
2005-03-10INTEGRATION: CWS dba24 (1.11.80); FILE MERGEDVladimir Glazounov
2005/02/09 08:12:57 oj 1.11.80.1: #i26950# remove the need for XNamed
2004-08-02INTEGRATION: CWS insight01 (1.10.108); FILE MERGEDJens-Heiner Rechtien
2004/02/12 16:15:20 oj 1.10.108.1: #111075# fix refcount problem
2002-08-08#98084# move dtor to protectedOcke Janssen
2001-10-12#92883# fix the descriptor handlingOcke Janssen
2001-08-24#90015# code corrcetions for some speedup'sOcke Janssen
2001-05-02some changes for ref vectorOcke Janssen
2001-04-20#86024# reassign columnsOcke Janssen
2001-01-22#82632# change memberOcke Janssen
2000-11-03some problems with refcount resolvedOcke Janssen
2000-10-17some changes for the rowsetOcke Janssen
2000-10-11replace unotools with comphelperFrank Schönheit
2000-09-18initial importJens-Heiner Rechtien