summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/datatransfer/XTransferable.idl
diff options
context:
space:
mode:
authorJuergen Schmidt <jsc@openoffice.org>2001-03-16 15:41:54 +0000
committerJuergen Schmidt <jsc@openoffice.org>2001-03-16 15:41:54 +0000
commitb2c63fd45faa54a3f62492d8937c2b7d15db0046 (patch)
tree4e4a880c28ab1820e98b179d0c991922252ee67d /offapi/com/sun/star/datatransfer/XTransferable.idl
parentc07bfba36e7a8288c6dc40795bd28ca3594e05b5 (diff)
remove interfaceheader with uik and remove [const] in method definitions
Diffstat (limited to 'offapi/com/sun/star/datatransfer/XTransferable.idl')
-rw-r--r--offapi/com/sun/star/datatransfer/XTransferable.idl11
1 files changed, 5 insertions, 6 deletions
diff --git a/offapi/com/sun/star/datatransfer/XTransferable.idl b/offapi/com/sun/star/datatransfer/XTransferable.idl
index 0d92a56d4..dc72c1596 100644
--- a/offapi/com/sun/star/datatransfer/XTransferable.idl
+++ b/offapi/com/sun/star/datatransfer/XTransferable.idl
@@ -2,9 +2,9 @@
*
* $RCSfile: XTransferable.idl,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: arellano $ $Date: 2001-03-01 17:53:51 $
+ * last change: $Author: jsc $ $Date: 2001-03-16 16:41:18 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -89,7 +89,6 @@ module com { module sun { module star { module datatransfer {
@see com::sun::star::datatransfer::DataFlavor
*/
-[ uik(8FDF5C80-0498-11d4-9F4C0050-04D765F1), ident("XTransferable", 0.1) ]
interface XTransferable: com::sun::star::uno::XInterface
{
//-------------------------------------------------------------------------
@@ -105,7 +104,7 @@ interface XTransferable: com::sun::star::uno::XInterface
@throws UnsupportedFlavorException
if the requested data flavor is not supported.
*/
- [const] any getTransferData( [in] DataFlavor aFlavor )
+ any getTransferData( [in] DataFlavor aFlavor )
raises ( UnsupportedFlavorException, com::sun::star::io::IOException );
//-------------------------------------------------------------------------
@@ -114,7 +113,7 @@ interface XTransferable: com::sun::star::uno::XInterface
@returns
the list of supported data flavors.
*/
- [const] sequence < DataFlavor > getTransferDataFlavors();
+ sequence < DataFlavor > getTransferDataFlavors();
//-------------------------------------------------------------------------
/** Checks if the data object supports the specified data flavor.
@@ -131,7 +130,7 @@ interface XTransferable: com::sun::star::uno::XInterface
<!-- Dennis: Should this be "getTransferDataFlavors" ? -->
*/
- [const] boolean isDataFlavorSupported( [in] DataFlavor aFlavor );
+ boolean isDataFlavorSupported( [in] DataFlavor aFlavor );
};
//=============================================================================