Date: prev next · Thread: first prev next last
2012 Archives by date, by thread · List index


On 31/01/12 17:31, Ivan Timofeev wrote:
31.01.2012 21:12, Noel Power пишет:
should remove the first occurrence, care to fix ?

so the exact equivalent of

mpSdCustomShow->Remove(pPage->GetSdrPage())

will be:

SdCustomShow::PageVec::iterator it = std::find(
    mpSdCustomShow->PagesVector().begin(),
    mpSdCustomShow->PagesVector().end(),
    pPage->GetSdrPage());
if (it != mpSdCustomShow->PagesVector().end())
    mpSdCustomShow->PagesVector().erase(it);
hey I've already proved my (non) STL credentials :-) , but.. if we are to believe the old code then mpSdCustomShow->Remove(pPage->GetSdrPage()); would call Container::Remove( void* p ) which would call Container::Remove( Container::GetPos( p ) ) which afaics deletes the first match :-) and that's what your patch seems to do, don't know if there is a briefer way to specify that but to me what you have looks fine


Noel



Context


Privacy Policy | Impressum (Legal Info) | Copyright information: Unless otherwise specified, all text and images on this website are licensed under the Creative Commons Attribution-Share Alike 3.0 License. This does not include the source code of LibreOffice, which is licensed under the Mozilla Public License (MPLv2). "LibreOffice" and "The Document Foundation" are registered trademarks of their corresponding registered owners or are in actual use as trademarks in one or more countries. Their respective logos and icons are also subject to international copyright laws. Use thereof is explained in our trademark policy.