summaryrefslogtreecommitdiff
path: root/connectivity/source/drivers/jdbc/SQLWarning.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'connectivity/source/drivers/jdbc/SQLWarning.cxx')
-rw-r--r--connectivity/source/drivers/jdbc/SQLWarning.cxx4
1 files changed, 3 insertions, 1 deletions
diff --git a/connectivity/source/drivers/jdbc/SQLWarning.cxx b/connectivity/source/drivers/jdbc/SQLWarning.cxx
index cf30b8b0e530..6a5e459f76c8 100644
--- a/connectivity/source/drivers/jdbc/SQLWarning.cxx
+++ b/connectivity/source/drivers/jdbc/SQLWarning.cxx
@@ -1,3 +1,4 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
@@ -40,9 +41,10 @@ java_sql_SQLWarning_BASE::~java_sql_SQLWarning_BASE()
jclass java_sql_SQLWarning_BASE::getMyClass() const
{
- // die Klasse muss nur einmal geholt werden, daher statisch
+ // the class needs to be fetched only once, that is why it is static
if( !theClass )
theClass = findMyClass("java/sql/SQLWarning");
return theClass;
}
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
co.uk> 2019-06-13tdf#42949 Fix IWYU warnings in vcl/inc/*Gabor Kelemen Platform-specific subdirs are left alone: android, ios, osx, quartz, win Found with bin/find-unneeded-includes Only removal proposals are dealt with here. Change-Id: Icbb906b7fbc960240c73c56d3dae2a78b06a0f53 Reviewed-on: https://gerrit.libreoffice.org/73754 Tested-by: Jenkins Reviewed-by: Miklos Vajna <vmiklos@collabora.com> 2019-05-14Gaceful fallback if the widget theme files can't be foundTomaž Vajngerl Change-Id: Ied3831c83ed385f5f28b82eb1ee67a2a4448cd05 Reviewed-on: https://gerrit.libreoffice.org/72268 Tested-by: Jenkins Reviewed-by: Tomaž Vajngerl <quikee@gmail.com> 2019-03-10only read and parse widget definition once from the fileTomaž Vajngerl Change-Id: I71c095e5e5dd21650663e6fb717bcb22958a597f Reviewed-on: https://gerrit.libreoffice.org/68976 Tested-by: Jenkins Reviewed-by: Tomaž Vajngerl <quikee@gmail.com> 2019-03-05Draw basic scrollbar from the theme definitionTomaž Vajngerl Change-Id: I2a017746f02c547413c949a1728ebbfa781a7f66 Reviewed-on: https://gerrit.libreoffice.org/68749 Tested-by: Jenkins Reviewed-by: Tomaž Vajngerl <quikee@gmail.com> 2019-03-04separate WidgetDefinitionReader from the actual WidgetDefinitionTomaž Vajngerl This separates the functionallity to read the definition from the definition itself. This is needed to have both responisibilities separated so it's easier to work with and test. Change-Id: Id0dd9c17852a8b7479e9d01d4c1726e915d3dc6e Reviewed-on: https://gerrit.libreoffice.org/68681 Tested-by: Jenkins Reviewed-by: Tomaž Vajngerl <quikee@gmail.com> 2019-03-04WidgetDrawInterface impl. to draw widgets from file definitionsTomaž Vajngerl This adds FileDefinitionWidgetDraw which extends the WidgetDrawInterface and is responsible to draw the widgets from the definition gathered from an external file. The file must be (currently) in the user folder named definition.xml. It instantiates the WidgetDefinitionReader to get the definitions and sets the style colors when updateSettings is called. Later more definitions will be implemented. Change-Id: Id02111e8aed4648e5a306b0f5dbc9a02c9b2fcb0 Reviewed-on: https://gerrit.libreoffice.org/68645 Tested-by: Jenkins Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>