diff options
author | Caolán McNamara <caolanm@redhat.com> | 2012-01-29 22:57:02 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2012-01-30 13:18:38 +0000 |
commit | 47e1e8494dde85414d28efafa99b33a62b59116d (patch) | |
tree | 5d054daf1893d7141db6e1b4b9440a38eb142ce2 /svl/source/svdde/ddecli.cxx | |
parent | a108260d0f0576f275495921ad36b957e789eadf (diff) |
make svl ByteString free
Diffstat (limited to 'svl/source/svdde/ddecli.cxx')
-rw-r--r-- | svl/source/svdde/ddecli.cxx | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/svl/source/svdde/ddecli.cxx b/svl/source/svdde/ddecli.cxx index c2462ba38c78..fba0c250d665 100644 --- a/svl/source/svdde/ddecli.cxx +++ b/svl/source/svdde/ddecli.cxx @@ -436,7 +436,6 @@ DdePoke::DdePoke( DdeConnection& d, const String& i, const String& rData, long n ) : DdeTransaction( d, i, n ) { -// ByteString aByteStr( rData, osl_getThreadTextEncoding() ); aDdeData = DdeData( (void*) rData.GetBuffer(), sizeof(sal_Unicode) * (rData.Len()), CF_TEXT ); nType = XTYP_POKE; } @@ -456,7 +455,6 @@ DdePoke::DdePoke( DdeConnection& d, const String& i, const DdeData& rData, DdeExecute::DdeExecute( DdeConnection& d, const String& rData, long n ) : DdeTransaction( d, String(), n ) { -// ByteString aByteStr( rData, osl_getThreadTextEncoding() ); aDdeData = DdeData( (void*)rData.GetBuffer(), sizeof(sal_Unicode) * (rData.Len() + 1), CF_TEXT ); nType = XTYP_EXECUTE; } |