[cbosdo03]Fixed warnings

This commit is contained in:
Cédric Bosdonnat 2010-04-21 14:27:16 +02:00
parent 69411dd31b
commit 593cd3c47a
3 changed files with 3 additions and 3 deletions

View file

@ -41,7 +41,7 @@ void lcl_printProperties( uno::Sequence< beans::PropertyValue > aProps )
for ( sal_Int32 i = 0; i < nLen; i++ )
{
uno::Any aValue = aProps[i].Value;
sal_Int32 nValue;
sal_Int32 nValue = 0;
OUString sValue;
if ( !( aValue >>= sValue ) && ( aValue >>= nValue ) )

View file

@ -169,7 +169,7 @@ public:
/** This class provides access to the defined numbering styles.
*/
class WRITERFILTER_DLLPRIVATE ListsManager :
class ListsManager :
public Properties,
public Table
{

View file

@ -76,7 +76,7 @@ struct StyleSheetEntry
typedef boost::shared_ptr<StyleSheetEntry> StyleSheetEntryPtr;
class DomainMapper;
class WRITERFILTER_DLLPRIVATE StyleSheetTable :
class StyleSheetTable :
public Properties,
public Table
{