summaryrefslogtreecommitdiff
path: root/include/connectivity
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2013-04-29 19:06:50 +0200
committerMichael Stahl <mstahl@redhat.com>2013-06-04 12:00:58 +0200
commitbf080115bac322b177ffcf1e15aff4de1d742b4c (patch)
tree52c7b2989273a4175dbedab888e1806b7bf6588e /include/connectivity
parent91dde49e9aef3991dbb159507cb03b73ba507818 (diff)
include: convert type scope="foo"> here too
sed -i 's,<type scope="\([^"]*\)">\([^<]\+\)</type>,\1::\2,g' Change-Id: I7eb32acd44132de79cc7ac1e7f78b43bb4814d14
Diffstat (limited to 'include/connectivity')
-rw-r--r--include/connectivity/dbtools.hxx14
-rw-r--r--include/connectivity/sqlerror.hxx12
2 files changed, 13 insertions, 13 deletions
diff --git a/include/connectivity/dbtools.hxx b/include/connectivity/dbtools.hxx
index 9706af6ccb1c..424237316382 100644
--- a/include/connectivity/dbtools.hxx
+++ b/include/connectivity/dbtools.hxx
@@ -222,9 +222,9 @@ namespace dbtools
/** get fields for a result set given by a "command descriptor"
<p>A command descriptor here means:
- <ul><li>a SDB-level connection (<type scope="com.sun.star.sdb">Connection</type></li>
+ <ul><li>a SDB-level connection (com.sun.star.sdb::Connection</li>
<li>a string specifying the name of an object relative to the connection</li>
- <li>a <type scope="com.sun.star.sdb">CommandType</type> value specifying the type
+ <li>a com.sun.star.sdb::CommandType value specifying the type
of the object</type></li>
</ul>
</p>
@@ -272,9 +272,9 @@ namespace dbtools
/** get fields for a result set given by a "command descriptor"
<p>A command descriptor here means:
- <ul><li>a SDB-level connection (<type scope="com.sun.star.sdb">Connection</type></li>
+ <ul><li>a SDB-level connection (com.sun.star.sdb::Connection</li>
<li>a string specifying the name of an object relative to the connection</li>
- <li>a <type scope="com.sun.star.sdb">CommandType</type> value specifying the type
+ <li>a com.sun.star.sdb::CommandType value specifying the type
of the object</type></li>
</ul>
</p>
@@ -409,10 +409,10 @@ namespace dbtools
const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext>& _rxContext = ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext>()
);
- /** create an <type scope="com::sun::star::sdb">XSingleSelectQueryComposer</type> which represents
+ /** create an com::sun::star::sdb::XSingleSelectQueryComposer which represents
the current settings (Command/CommandType/Filter/Order) of the given rowset.
- As such an instance can be obtained from a <type scope="com::sun::star::sdb">Connection</type>
+ As such an instance can be obtained from a com::sun::star::sdb::Connection
only the function searches for the connection the RowSet is using via connectRowset.
This implies that a connection will be set on the RowSet if needed.
(need to changes this sometimes ...)
@@ -564,7 +564,7 @@ namespace dbtools
/** ask the user for parameters if the prepared statement needs some and sets them in the prepared statement
- @param _xConnection the connection must be able to create <type scope="com::sun::star::sdb">SingleSelectQueryComposer</type>s
+ @param _xConnection the connection must be able to create com::sun::star::sdb::SingleSelectQueryComposers
@param _xPreparedStmt the prepared statement where the parameters could be set when needed
@param _aParametersSet contains which parameters have to asked for and which already have set.
*/
diff --git a/include/connectivity/sqlerror.hxx b/include/connectivity/sqlerror.hxx
index ccad18a88d0f..7119897c24aa 100644
--- a/include/connectivity/sqlerror.hxx
+++ b/include/connectivity/sqlerror.hxx
@@ -41,7 +41,7 @@ namespace connectivity
*/
typedef ::sal_Int32 ErrorCode;
- /** error condition values as defined in <type scope="com::sun::star::sdb">ErrorCondition</type>
+ /** error condition values as defined in com::sun::star::sdb::ErrorCondition
*/
typedef ::sal_Int32 ErrorCondition;
@@ -96,7 +96,7 @@ namespace connectivity
In a non-product build, assertions will fire if the number of placeholders in the
message's resource string does not match the number of passed parameter values.
- As specified in the <type scope="com::sun::star::sdb">ErrorCondition</type> type,
+ As specified in the com::sun::star::sdb::ErrorCondition type,
error messages thrown by core components of OpenOffice.org Base will contain
a standardized prefix &quot;[OOoBase]&quot; in every message.
@@ -136,7 +136,7 @@ namespace connectivity
/** returns the prefix which is used for OpenOffice.org Base's error messages
- As specified in the <type scope="com::sun::star::sdb">ErrorCondition</type> type,
+ As specified in the com::sun::star::sdb::ErrorCondition type,
error messages thrown by core components of OpenOffice.org Base will
contain a standardized prefix in every message. <code>getBaseErrorMessagePrefix</code>
returns this prefix, so clients of such error messages might decide to strip this
@@ -223,7 +223,7 @@ namespace connectivity
) const;
/** raises a typed exception, that is, a UNO exception which is derived from
- <type scope="com::sun::star::sdbc">SQLException</type>
+ com::sun::star::sdbc::SQLException
@param _eCondition
the ErrorCondition which hit you
@@ -234,7 +234,7 @@ namespace connectivity
@param _rExceptionType
the type of the exception to throw. This type <em>must</em> specify
- an exception class derived from <type scope="com::sun::star::sdbc">SQLException</type>.
+ an exception class derived from com::sun::star::sdbc::SQLException.
@param _rParamValue1
a runtime-dependent value which should be filled into the error message
@@ -253,7 +253,7 @@ namespace connectivity
@throws ::std::bad_cast
if <arg>_rExceptionType</arg> does not specify an exception class derived from
- <type scope="com::sun::star::sdbc">SQLException</type>.
+ com::sun::star::sdbc::SQLException.
@see getErrorMessage
@see getErrorCode