warnings
This commit is contained in:
parent
5934d1e335
commit
e3dcc1a29e
3 changed files with 15 additions and 12 deletions
|
@ -4,9 +4,9 @@
|
|||
*
|
||||
* $RCSfile: DomainMapper_Impl.cxx,v $
|
||||
*
|
||||
* $Revision: 1.8 $
|
||||
* $Revision: 1.9 $
|
||||
*
|
||||
* last change: $Author: os $ $Date: 2007-02-05 13:47:58 $
|
||||
* last change: $Author: hbrinkm $ $Date: 2007-02-21 13:34:28 $
|
||||
*
|
||||
* The Contents of this file are made available subject to
|
||||
* the terms of GNU Lesser General Public License Version 2.1.
|
||||
|
@ -464,10 +464,10 @@ void DomainMapper_Impl::PushProperties(ContextType eId)
|
|||
{
|
||||
// beginning with the second section group a section has to be inserted
|
||||
// into the document
|
||||
SectionPropertyMap* pSectionContext = dynamic_cast< SectionPropertyMap* >( pInsert.get() );
|
||||
SectionPropertyMap* pSectionContext_ = dynamic_cast< SectionPropertyMap* >( pInsert.get() );
|
||||
uno::Reference< text::XTextAppendAndConvert > xTextAppendAndConvert = m_aTextAppendStack.top();
|
||||
if(xTextAppendAndConvert.is())
|
||||
pSectionContext->SetStart( xTextAppendAndConvert->getEnd() );
|
||||
pSectionContext_->SetStart( xTextAppendAndConvert->getEnd() );
|
||||
}
|
||||
}
|
||||
m_aPropertyStacks[eId].push( pInsert );
|
||||
|
@ -1702,6 +1702,8 @@ bool lcl_FindInCommand(
|
|||
{
|
||||
}
|
||||
}
|
||||
*/
|
||||
|
||||
/*-- 11.09.2006 13:16:35---------------------------------------------------
|
||||
|
||||
-----------------------------------------------------------------------*/
|
||||
|
@ -1709,6 +1711,7 @@ bool lcl_FindInCommand(
|
|||
{
|
||||
return m_xTextField.is() || m_xTOC.is() || m_xTC.is() || m_sHyperlinkURL.getLength();
|
||||
}
|
||||
*/
|
||||
/*-- 14.09.2006 12:46:52---------------------------------------------------
|
||||
|
||||
-----------------------------------------------------------------------*/
|
||||
|
|
|
@ -4,9 +4,9 @@
|
|||
*
|
||||
* $RCSfile: PropertyMap.cxx,v $
|
||||
*
|
||||
* $Revision: 1.9 $
|
||||
* $Revision: 1.10 $
|
||||
*
|
||||
* last change: $Author: os $ $Date: 2007-02-21 12:25:06 $
|
||||
* last change: $Author: hbrinkm $ $Date: 2007-02-21 13:35:17 $
|
||||
*
|
||||
* The Contents of this file are made available subject to
|
||||
* the terms of GNU Lesser General Public License Version 2.1.
|
||||
|
@ -717,11 +717,11 @@ void SectionPropertyMap::CloseSectionGroup( DomainMapper_Impl& rDM_Impl )
|
|||
const StyleSheetEntry* pEntry = rDM_Impl.GetStyleSheetTable()->FindStyleSheetByISTD(0);
|
||||
if( pEntry )
|
||||
{
|
||||
PropertyMap::iterator aElement = pEntry->pProperties->find(rPropNameSupplier.GetName( PROP_CHAR_HEIGHT_ASIAN ));
|
||||
if( aElement != pEntry->pProperties->end())
|
||||
PropertyMap::iterator aElement_ = pEntry->pProperties->find(rPropNameSupplier.GetName( PROP_CHAR_HEIGHT_ASIAN ));
|
||||
if( aElement_ != pEntry->pProperties->end())
|
||||
{
|
||||
double fHeight;
|
||||
if( aElement->second >>= fHeight )
|
||||
if( aElement_->second >>= fHeight )
|
||||
nCharWidth = ConversionHelper::convertToMM100( (long)( fHeight * 20.0 + 0.5 ));
|
||||
}
|
||||
}
|
||||
|
|
|
@ -4,9 +4,9 @@
|
|||
*
|
||||
* $RCSfile: StyleSheetTable.cxx,v $
|
||||
*
|
||||
* $Revision: 1.4 $
|
||||
* $Revision: 1.5 $
|
||||
*
|
||||
* last change: $Author: os $ $Date: 2007-02-05 13:47:58 $
|
||||
* last change: $Author: hbrinkm $ $Date: 2007-02-21 13:36:00 $
|
||||
*
|
||||
* The Contents of this file are made available subject to
|
||||
* the terms of GNU Lesser General Public License Version 2.1.
|
||||
|
@ -930,7 +930,7 @@ const StyleSheetEntry* StyleSheetTable::FindParentStyleSheet(sal_Int32 nBaseStyl
|
|||
"Document Map", 0, //89
|
||||
"Plain Text", 0 //90
|
||||
};
|
||||
for( sal_Int32 nPair = 0; nPair < sizeof(aStyleNamePairs) / sizeof( sal_Char*) / 2; ++nPair)
|
||||
for( sal_uInt32 nPair = 0; nPair < sizeof(aStyleNamePairs) / sizeof( sal_Char*) / 2; ++nPair)
|
||||
{
|
||||
//::std::pair<PropertyNameMap_t::iterator,bool> aInsertIt =
|
||||
m_pImpl->m_aStyleNameMap.insert( StringPairMap_t::value_type(
|
||||
|
|
Loading…
Reference in a new issue