summaryrefslogtreecommitdiff
path: root/include/ucbhelper
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-06-27 15:08:50 +0200
committerNoel Grandin <noelgrandin@gmail.com>2016-06-28 11:21:17 +0000
commit48a8d6d8434908690bc2a51d27f1051bd550c9b0 (patch)
tree066f8fc9753bdba62f87f205baface6e729857bf /include/ucbhelper
parentf7d6f3e4e3fda3cd4936880918e2831246634a3e (diff)
loplugin:singlevalfields in various
Change-Id: Ia0d8f463a4dba9ec63aa0159441e3e607dd3bf5e Reviewed-on: https://gerrit.libreoffice.org/26738 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'include/ucbhelper')
-rw-r--r--include/ucbhelper/resultsetmetadata.hxx6
1 files changed, 1 insertions, 5 deletions
diff --git a/include/ucbhelper/resultsetmetadata.hxx b/include/ucbhelper/resultsetmetadata.hxx
index 209e0da4dd0d..6d27da83f697 100644
--- a/include/ucbhelper/resultsetmetadata.hxx
+++ b/include/ucbhelper/resultsetmetadata.hxx
@@ -51,9 +51,6 @@ namespace ucbhelper
*/
struct ResultSetColumnData
{
- /** @see ResultSetMetaData::isAutoIncrement */
- bool isAutoIncrement;
-
/** @see ResultSetMetaData::isCaseSensitive */
bool isCaseSensitive;
@@ -85,8 +82,7 @@ struct ResultSetColumnData
// may heavily depend on the behaviour of the default constructor.
ResultSetColumnData::ResultSetColumnData()
-: isAutoIncrement( false ),
- isCaseSensitive( true ),
+: isCaseSensitive( true ),
columnDisplaySize( 16 )
{
}