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


Hello,

I took some time to take a look and here is what I found :
When I add "SVX_UNOEDIT_OUTLINER_PROPERTIES" in sd/source/core/stlsheet.cxx
, I hadn't noticed this line :
static SvxItemPropertySet aPropSet( aFullPropertyMap_Impl,
SdrObject::GetGlobalDrawObjectItemPool() );

So the array of SfxItemPropertyMapEntry is bound with the return of
SdrObject::GetGlobalDrawObjectItemPool().
Ok i go to "svx/source/svdraw/svdobj.cxx" and see this :
    525 SdrItemPool& SdrObject::GetGlobalDrawObjectItemPool()
    526 {
    527     if(!mpGlobalItemPool)
    528     {
    529         mpGlobalItemPool = new SdrItemPool();
    530         SfxItemPool* pGlobalOutlPool = EditEngine::CreatePool();
    531         mpGlobalItemPool->SetSecondaryPool(pGlobalOutlPool);
    532        
mpGlobalItemPool->SetDefaultMetric((SfxMapUnit)SdrEngineDefaults::GetMapUnit());
    533         mpGlobalItemPool->FreezeIdRanges();
    534     }
    535 
    536     return *mpGlobalItemPool;
    537 }

I continue and go to "svx/source/svdraw/svdattr.cxx" and take a look at the
constructor (line 94)
I'm stuck on this constructor. It's quite long and not very explicit to me.

(Eike, i took a look at editeng/source/editeng/eerdll.cxx, obviously it
seems GlobalEditData::GetDefItems() works the same way)

Any idea ?



--
View this message in context: 
http://nabble.documentfoundation.org/Unknown-property-tp3293973p3299554.html
Sent from the Dev mailing list archive at Nabble.com.

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.