summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2001-11-14 15:05:40 +0000
committerRüdiger Timm <rt@openoffice.org>2001-11-14 15:05:40 +0000
commitffbcc8b2ac61d4d9dae8b4d82da4ebdccc02a072 (patch)
treef469ac6e9ade17a8e24b9992e01390c121ce8b0b
parent6137ab58b4e2022a77894b8e079e38fb8bd5bb68 (diff)
#65293# use temporary variable for gcc
-rw-r--r--framework/inc/dispatch/interaction.hxx7
1 files changed, 4 insertions, 3 deletions
diff --git a/framework/inc/dispatch/interaction.hxx b/framework/inc/dispatch/interaction.hxx
index 8d4969046125..2e9234be4c68 100644
--- a/framework/inc/dispatch/interaction.hxx
+++ b/framework/inc/dispatch/interaction.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: interaction.hxx,v $
*
- * $Revision: 1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: as $ $Date: 2001-11-08 11:57:56 $
+ * last change: $Author: rt $ $Date: 2001-11-14 16:05:40 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -317,7 +317,8 @@ class RequestFilterSelect : public ::cppu::WeakImplHelper1< css::task::XInteract
//---------------------------------------------------------------------------------------------------------
RequestFilterSelect( const ::rtl::OUString& sURL )
{
- css::document::NoSuchFilterRequest aFilterRequest( ::rtl::OUString(), css::uno::Reference< css::uno::XInterface >(), sURL );
+ ::rtl::OUString aStr;
+ css::document::NoSuchFilterRequest aFilterRequest( aStr, css::uno::Reference< css::uno::XInterface >(), sURL );
m_aRequest <<= aFilterRequest;
m_pAbort = new ContinuationAbort ;