[cbosdo03]Fixed warnings
This commit is contained in:
parent
69411dd31b
commit
593cd3c47a
3 changed files with 3 additions and 3 deletions
|
@ -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 ) )
|
||||
|
|
|
@ -169,7 +169,7 @@ public:
|
|||
|
||||
/** This class provides access to the defined numbering styles.
|
||||
*/
|
||||
class WRITERFILTER_DLLPRIVATE ListsManager :
|
||||
class ListsManager :
|
||||
public Properties,
|
||||
public Table
|
||||
{
|
||||
|
|
|
@ -76,7 +76,7 @@ struct StyleSheetEntry
|
|||
typedef boost::shared_ptr<StyleSheetEntry> StyleSheetEntryPtr;
|
||||
|
||||
class DomainMapper;
|
||||
class WRITERFILTER_DLLPRIVATE StyleSheetTable :
|
||||
class StyleSheetTable :
|
||||
public Properties,
|
||||
public Table
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue