| 1350 | } |
| 1351 | |
| 1352 | OUString BinaryInput::readString() |
| 1353 | { |
| 1354 | OUStringBuffer aBuf; |
| 1355 | sal_Unicode c; |
| 1356 | do |
| 1357 | { |
| 1358 | c = readUnicodeChar(); |
| 1359 | if( c != 0 ) |
| 1360 | aBuf.append( c ); |
| 1361 | } |
| 1362 | while( c != 0 ); |
| 1363 | |
| 1364 | OUString aRetStr = aBuf.makeStringAndClear(); |
| 1365 | return aRetStr; |
| 1366 | } |
| 1367 | |
| 1368 | void StringResourcePersistenceImpl::importBinary( const Sequence< ::sal_Int8 >& Data ) |
| 1369 | { |
no test coverage detected