diff options
author | Mathias Bauer <mbauer@apache.org> | 2011-09-18 20:31:26 +0000 |
---|---|---|
committer | Mathias Bauer <mbauer@apache.org> | 2011-09-18 20:31:26 +0000 |
commit | cfe23210e55b1d28a3c9fc255624475e15b65a97 (patch) | |
tree | c568a2f8ba6c11f06e2c2629e6dfaffea7745ad9 /svtools | |
parent | ad39b880ae108cbb622fcbf6c6bda0dd3d4be783 (diff) |
cws mba34issues01: #i114600#: remove forbidden characters from list of unencoded characters
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 fcd519398c8e..8753c25eebdf 100644 --- a/svtools/source/misc/transfer.cxx +++ b/svtools/source/misc/transfer.cxx @@ -150,7 +150,7 @@ SvStream& operator<<( SvStream& rOStm, const TransferableObjectDescriptor& rObjD // the reading of the parameter is done using the special service ::com::sun::star::datatransfer::MimeContentType, // a similar approach should be implemented for creation of the mimetype string; // for now the set of acceptable characters has to be hardcoded, in future it should be part of the service that creates the mimetype -const ::rtl::OUString aQuotedParamChars = ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "()<>@,;:\\\"/[]?=!#$%&'*+-0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ^_`abcdefghijklmnopqrstuvwxyz{|}~. " ) ); +const ::rtl::OUString aQuotedParamChars = ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "()<>@,;:/[]?=!#$&'*+-0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ^_`abcdefghijklmnopqrstuvwxyz{|}~. " ) ); static ::rtl::OUString ImplGetParameterString( const TransferableObjectDescriptor& rObjDesc ) { |