summaryrefslogtreecommitdiff
path: root/sfx2/source/appl/appmisc.cxx
diff options
context:
space:
mode:
authorMathias Bauer <mba@openoffice.org>2002-10-11 17:06:06 +0000
committerMathias Bauer <mba@openoffice.org>2002-10-11 17:06:06 +0000
commitef05a7ac4f15c5deddf06f56741a1e672fbdb049 (patch)
treef640b2a3862e9e4541762db50c6e2b7773d7319e /sfx2/source/appl/appmisc.cxx
parent798f51c9b4f8a4e8b9e6f7e0f5979e9d43bb2e18 (diff)
#104101#: don't need a referer for macros
Diffstat (limited to 'sfx2/source/appl/appmisc.cxx')
-rw-r--r--sfx2/source/appl/appmisc.cxx7
1 files changed, 5 insertions, 2 deletions
diff --git a/sfx2/source/appl/appmisc.cxx b/sfx2/source/appl/appmisc.cxx
index 8aa5e61cb5..7a130e4b54 100644
--- a/sfx2/source/appl/appmisc.cxx
+++ b/sfx2/source/appl/appmisc.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: appmisc.cxx,v $
*
- * $Revision: 1.40 $
+ * $Revision: 1.41 $
*
- * last change: $Author: mav $ $Date: 2002-09-30 15:14:46 $
+ * last change: $Author: mba $ $Date: 2002-10-11 18:06:04 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -770,11 +770,14 @@ long Select_Impl( void* pHdl, void* pVoid )
}
if ( xDisp.is() )
{
+/*
Sequence<PropertyValue> aArgs(1);
PropertyValue* pArg = aArgs.getArray();
pArg[0].Name = rtl::OUString::createFromAscii("Referer");
pArg[0].Value <<= ::rtl::OUString::createFromAscii("private:user");
xDisp->dispatch( aTargetURL, aArgs );
+ */
+ xDisp->dispatch( aTargetURL, Sequence<PropertyValue>() );
}
return TRUE;