summaryrefslogtreecommitdiff
path: root/include/ucbhelper/simplenameclashresolverequest.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/ucbhelper/simplenameclashresolverequest.hxx')
-rw-r--r--include/ucbhelper/simplenameclashresolverequest.hxx9
1 files changed, 5 insertions, 4 deletions
diff --git a/include/ucbhelper/simplenameclashresolverequest.hxx b/include/ucbhelper/simplenameclashresolverequest.hxx
index 33a58b3baed6..c773097a961e 100644
--- a/include/ucbhelper/simplenameclashresolverequest.hxx
+++ b/include/ucbhelper/simplenameclashresolverequest.hxx
@@ -26,6 +26,8 @@
namespace ucbhelper {
+class InteractionSupplyName;
+
/**
* This class implements a simple name clash resolve interaction request.
* Instances can be passed directly to XInteractionHandler::handle(...). Each
@@ -36,12 +38,13 @@ namespace ucbhelper {
* @see com::sun::star::ucb::NameClashResolveRequest
* @see InteractionAbort
* @see InteractioneplaceExistingData
- * @see InteractionSupplyName
*/
class UCBHELPER_DLLPUBLIC SimpleNameClashResolveRequest : public ucbhelper::InteractionRequest
{
rtl::Reference< InteractionSupplyName > m_xNameSupplier;
+ virtual ~SimpleNameClashResolveRequest();
+
public:
/**
* Constructor.
@@ -65,9 +68,7 @@ public:
*
* @return the new name, if supplied.
*/
- const OUString getNewName() const
- { return m_xNameSupplier->getName(); }
-
+ const OUString getNewName() const;
};
} // namespace ucbhelper