[Libreoffice] [PATCH] Replace WW8Bytes with ww::bytes
Michael Stahl
mst at openoffice.org
Wed Oct 5 13:11:12 PDT 2011
On 05.10.2011 22:02, Maciej Rumianowski wrote:
> Dnia 2011-10-05, śro o godzinie 17:35 +0200, Lubos Lunak pisze:
>> On Wednesday 05 of October 2011, Jan Holesovsky wrote:
>>> That would allow you to convert the pO->GetData() to something like
>>> po->data(), instead of &(*pO)[0] (and similar) used on many places...
>>
>> That same would be allowed by
>> class bytes : public std::vector<sal_uInt8>
>> {
>> public:
>> const sal_uInt8* data() const { return &front(); }
>> ...
> So if it is desired solution I can modify Patches?
why not just use "&po->front()" directly instead, that's nicer than
&(*po)[0] and no need to introduce a class just for this IMHO.
More information about the LibreOffice
mailing list