summaryrefslogtreecommitdiff
path: root/include/ucbhelper/registerucb.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/ucbhelper/registerucb.hxx')
-rw-r--r--include/ucbhelper/registerucb.hxx26
1 files changed, 1 insertions, 25 deletions
diff --git a/include/ucbhelper/registerucb.hxx b/include/ucbhelper/registerucb.hxx
index 183dabdf6d06..89b1d005ca5e 100644
--- a/include/ucbhelper/registerucb.hxx
+++ b/include/ucbhelper/registerucb.hxx
@@ -22,7 +22,6 @@
#include <com/sun/star/uno/RuntimeException.hpp>
#include <com/sun/star/uno/Reference.h>
-#include <com/sun/star/ucb/XContentProvider.hpp>
#include <com/sun/star/ucb/XContentProviderManager.hpp>
#include <vector>
@@ -37,28 +36,6 @@ namespace com { namespace sun { namespace star {
namespace ucbhelper {
//============================================================================
-/** Information about a registered content provider.
- */
-struct ContentProviderRegistrationInfo
-{
- /** The registered content provider (or null if registration failed).
- */
- com::sun::star::uno::Reference< com::sun::star::ucb::XContentProvider >
- m_xProvider;
-
- /** The arguments the content provider was instantiated with.
- */
- OUString m_aArguments;
-
- /** The URL template the content provider is registered on.
- */
- OUString m_aTemplate;
-};
-
-typedef std::vector< ContentProviderRegistrationInfo >
- ContentProviderRegistrationInfoList;
-
-//============================================================================
/** Information about a content provider, passed to
<method>configureUcb</method>.
*/
@@ -113,8 +90,7 @@ UCBHELPER_DLLPUBLIC bool registerAtUcb(
rxContext,
OUString const & rName,
OUString const & rArguments,
- OUString const & rTemplate,
- ContentProviderRegistrationInfo * pInfo)
+ OUString const & rTemplate)
throw (com::sun::star::uno::RuntimeException);
}