summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/sdbc/XDriver.idl
diff options
context:
space:
mode:
authorJean-Tiare LE BIGOT <admin@jtlebi.fr>2012-08-11 13:22:07 -0400
committerDavid Tardon <dtardon@redhat.com>2012-08-12 19:29:16 +0200
commitfc2998738538a8e8abc4b8ab5b84a12aa7365dd0 (patch)
tree8026ad5e9a05948f882f790675c0813c72cd42bf /offapi/com/sun/star/sdbc/XDriver.idl
parent602f956d3231a093c9853d88fe5d5de2465f7112 (diff)
Remove comment art from offapi and udkapi
I used this "one-liner" to detect comment lines containing only spaces and '=' or '-' $ find . -name "*.*" -exec sed -i '/^\s*\/\/\s*[-=]*\s*$/d' {} \; Change-Id: Iac589765c8c2e7c3ad9c487d57e48b4fd4439f07
Diffstat (limited to 'offapi/com/sun/star/sdbc/XDriver.idl')
-rw-r--r--offapi/com/sun/star/sdbc/XDriver.idl5
1 files changed, 0 insertions, 5 deletions
diff --git a/offapi/com/sun/star/sdbc/XDriver.idl b/offapi/com/sun/star/sdbc/XDriver.idl
index a671ac8d44c4..b0bc4a5471e0 100644
--- a/offapi/com/sun/star/sdbc/XDriver.idl
+++ b/offapi/com/sun/star/sdbc/XDriver.idl
@@ -104,7 +104,6 @@ published interface XDriver: com::sun::star::uno::XInterface
[in]string url,
[in]sequence<com::sun::star::beans::PropertyValue> info)
raises (SQLException);
- //-------------------------------------------------------------------------
/** returns <TRUE/> if the driver thinks that it can open a connection
to the given URL. Typically drivers will return <TRUE/> if they
@@ -119,7 +118,6 @@ published interface XDriver: com::sun::star::uno::XInterface
if a database access error occurs.
*/
boolean acceptsURL([in]string url) raises (SQLException);
- //-------------------------------------------------------------------------
/** gets information about the possible properties for this driver.
<p>The getPropertyInfo method is intended to allow a generic GUI tool to
@@ -143,14 +141,12 @@ published interface XDriver: com::sun::star::uno::XInterface
sequence<DriverPropertyInfo> getPropertyInfo([in]string url,
[in] sequence<com::sun::star::beans::PropertyValue> info)
raises (SQLException);
- //-------------------------------------------------------------------------
/** gets the driver's major version number. Initially this should be 1.
@returns
this driver's major version number
*/
long getMajorVersion();
- //-------------------------------------------------------------------------
/** gets the driver's minor version number. Initially this should be 0.
@returns
@@ -159,7 +155,6 @@ published interface XDriver: com::sun::star::uno::XInterface
long getMinorVersion();
};
-//=============================================================================
}; }; }; };