diff options
author | Michael Stahl <mstahl@redhat.com> | 2012-09-25 21:19:16 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2012-09-26 12:57:27 +0200 |
commit | 8385aa5f73e4f6dda8a234240d03420e9a7da69e (patch) | |
tree | 6854d4e36ab674e2a519e039c4db8576c6177edf /svtools | |
parent | f0f2efaea61e674ea62430d6cda65882c90104a1 (diff) |
TransferableHelper: fix annoying assertion "bad pCharClass"
The % must be URI encoded, not acceptable.
Change-Id: I1274170275d1a1432fb2f933cbd3c6ee8c35d436
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/source/misc/transfer.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
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 ) { |