summaryrefslogtreecommitdiff
path: root/comphelper
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2015-07-27 20:43:53 +0200
committerMichael Stahl <mstahl@redhat.com>2015-07-27 21:22:07 +0200
commit18110ca3bdc9542e28480d5719f33c429b325402 (patch)
treed9be341c292d172bf67ea2d948c96c7cbe4ca130 /comphelper
parent774085dbe5c332f2be757f5f6a0324280dd72651 (diff)
comphelper, desktop: fix MSVC mergedlib link failure
Duplicate symbols are easily avoided by removing duplicate code. Change-Id: I9b598a44156d6ff71b0691e69ab8163b15e2e26f
Diffstat (limited to 'comphelper')
-rw-r--r--comphelper/source/misc/interaction.cxx6
1 files changed, 6 insertions, 0 deletions
diff --git a/comphelper/source/misc/interaction.cxx b/comphelper/source/misc/interaction.cxx
index 9c96c3e526bc..d16aed741ccd 100644
--- a/comphelper/source/misc/interaction.cxx
+++ b/comphelper/source/misc/interaction.cxx
@@ -44,6 +44,12 @@ namespace comphelper
{
}
+ OInteractionRequest::OInteractionRequest(const Any& rRequestDescription,
+ Sequence<Reference<XInteractionContinuation>> const& rContinuations)
+ : m_aRequest(rRequestDescription)
+ , m_aContinuations(rContinuations)
+ {
+ }
void OInteractionRequest::addContinuation(const Reference< XInteractionContinuation >& _rxContinuation)
{