From 8385aa5f73e4f6dda8a234240d03420e9a7da69e Mon Sep 17 00:00:00 2001 From: Michael Stahl Date: Tue, 25 Sep 2012 21:19:16 +0200 Subject: [PATCH] TransferableHelper: fix annoying assertion "bad pCharClass" The % must be URI encoded, not acceptable. Change-Id: I1274170275d1a1432fb2f933cbd3c6ee8c35d436 --- svtools/source/misc/transfer.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/svtools/source/misc/transfer.cxx b/svtools/source/misc/transfer.cxx index 79a6412caf6d..8c41222d2193 100644 --- a/svtools/source/misc/transfer.cxx +++ b/svtools/source/misc/transfer.cxx @@ -181,7 +181,7 @@ static ::rtl::OUString ImplGetParameterString( const TransferableObjectDescripto pToAccept[nBInd] = sal_False; const char aQuotedParamChars[] = - "()<>@,;:\\\"/[]?=!#$%&'*+-0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ^_`abcdefghijklmnopqrstuvwxyz{|}~. "; + "()<>@,;:\\\"/[]?=!#$&'*+-0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ^_`abcdefghijklmnopqrstuvwxyz{|}~. "; for ( sal_Int32 nInd = 0; nInd < RTL_CONSTASCII_LENGTH(aQuotedParamChars); ++nInd ) {