summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2013-06-14 12:22:40 +0200
committerStephan Bergmann <sbergman@redhat.com>2013-06-14 12:22:40 +0200
commitf31d4ad929339b4a06d5f84b14a2198345d88757 (patch)
tree30d7b429d13909245e66f14d6a9b8507d0a8a077 /include
parent940dba6b0f13df4c7a42265cf52fec6ba6055c5a (diff)
Remove unused ContentProviderRegistrationInfo
Change-Id: Ic30cbc95b4baa4dabaa0f8f8e129aa5cf4ca5f2f
Diffstat (limited to 'include')
-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);
}