summaryrefslogtreecommitdiff
path: root/vcl/aqua/source/dtrans/DataFlavorMapping.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'vcl/aqua/source/dtrans/DataFlavorMapping.hxx')
-rw-r--r--vcl/aqua/source/dtrans/DataFlavorMapping.hxx22
1 files changed, 11 insertions, 11 deletions
diff --git a/vcl/aqua/source/dtrans/DataFlavorMapping.hxx b/vcl/aqua/source/dtrans/DataFlavorMapping.hxx
index 51e29efed530..3d8cee3f39de 100644
--- a/vcl/aqua/source/dtrans/DataFlavorMapping.hxx
+++ b/vcl/aqua/source/dtrans/DataFlavorMapping.hxx
@@ -2,7 +2,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -42,14 +42,14 @@
#include <boost/shared_ptr.hpp>
-/* An interface to get the clipboard data in either
+/* An interface to get the clipboard data in either
system or OOo format.
*/
class DataProvider
{
public:
virtual ~DataProvider() {};
-
+
/* Get the clipboard data in the system format.
The caller has to retain/release the returned
CFDataRef on demand.
@@ -76,8 +76,8 @@ public:
DataFlavorMapper();
- /* Map a system data flavor to an OpenOffice data flavor.
- Return an empty string if there is not suiteable
+ /* Map a system data flavor to an OpenOffice data flavor.
+ Return an empty string if there is not suiteable
mapping from a system data flavor to a OpenOffice data
flavor.
*/
@@ -99,11 +99,11 @@ public:
/* Get a data provider which is able to provide the data 'rTransferable' offers in a format that can
be put on to the system clipboard.
*/
- DataProviderPtr_t getDataProvider(NSString* systemFlavor,
+ DataProviderPtr_t getDataProvider(NSString* systemFlavor,
const com::sun::star::uno::Reference< com::sun::star::datatransfer::XTransferable > rTransferable) const;
-
-
+
+
/* Get a data provider which is able to provide 'systemData' in the OOo expected format.
*/
DataProviderPtr_t getDataProvider(const NSString* systemFlavor, NSArray* systemData) const;
@@ -115,12 +115,12 @@ public:
/* Translate a sequence of DataFlavors into a NSArray of system types.
- Only those DataFlavors for which a suitable mapping to a system
+ Only those DataFlavors for which a suitable mapping to a system
type exist will be contained in the returned types array.
*/
NSArray* flavorSequenceToTypesArray(const com::sun::star::uno::Sequence<com::sun::star::datatransfer::DataFlavor>& flavors) const;
- /* Translate a NSArray of system types into a sequence of DataFlavors.
+ /* Translate a NSArray of system types into a sequence of DataFlavors.
Only those types for which a suitable mapping to a DataFlavor
exist will be contained in the new DataFlavor Sequence.
*/
@@ -141,6 +141,6 @@ private:
typedef boost::shared_ptr<DataFlavorMapper> DataFlavorMapperPtr_t;
-#endif
+#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */