warning as error fixes
This commit is contained in:
parent
7f8c9a3929
commit
d8bf9b91b4
6 changed files with 30 additions and 7 deletions
|
@ -161,6 +161,25 @@ SwVbaDocuments::Open( const ::rtl::OUString& Filename, const uno::Any& /*Confirm
|
|||
return aRet;
|
||||
}
|
||||
|
||||
// VbaDocumentsBase / XDocumentsBase (to avoid warning C4266 for hiding function on wntmsci)
|
||||
uno::Any SAL_CALL
|
||||
SwVbaDocuments::Add() throw (uno::RuntimeException)
|
||||
{
|
||||
return VbaDocumentsBase::Add();
|
||||
}
|
||||
|
||||
void SAL_CALL
|
||||
SwVbaDocuments::Close( ) throw (uno::RuntimeException)
|
||||
{
|
||||
VbaDocumentsBase::Close();
|
||||
}
|
||||
|
||||
uno::Any SAL_CALL
|
||||
SwVbaDocuments::Open( const ::rtl::OUString& Filename, const uno::Any& ReadOnly, const uno::Sequence< beans::PropertyValue >& rProps ) throw (uno::RuntimeException)
|
||||
{
|
||||
return VbaDocumentsBase::Open( Filename, ReadOnly, rProps );
|
||||
}
|
||||
|
||||
rtl::OUString&
|
||||
SwVbaDocuments::getServiceImplName()
|
||||
{
|
||||
|
|
|
@ -60,6 +60,10 @@ public:
|
|||
virtual css::uno::Any SAL_CALL Open( const ::rtl::OUString& Filename, const css::uno::Any& ConfirmConversions, const css::uno::Any& ReadOnly, const css::uno::Any& AddToRecentFiles, const css::uno::Any& PasswordDocument, const css::uno::Any& PasswordTemplate, const css::uno::Any& Revert, const css::uno::Any& WritePasswordDocument, const css::uno::Any& WritePasswordTemplate, const css::uno::Any& Format, const css::uno::Any& Encoding, const css::uno::Any& Visible, const css::uno::Any& OpenAndRepair, const css::uno::Any& DocumentDirection, const css::uno::Any& NoEncodingDialog, const css::uno::Any& XMLTransform ) throw (css::uno::RuntimeException);
|
||||
virtual void SAL_CALL Close( const css::uno::Any& SaveChanges, const css::uno::Any& OriginalFormat, const css::uno::Any& RouteDocument ) throw (css::uno::RuntimeException);
|
||||
|
||||
// VbaDocumentsBase / XDocumentsBase (to avoid warning C4266 for hiding function on wntmsci)
|
||||
virtual css::uno::Any SAL_CALL Add() throw (css::uno::RuntimeException);
|
||||
virtual void SAL_CALL Close( ) throw (css::uno::RuntimeException);
|
||||
virtual css::uno::Any SAL_CALL Open( const ::rtl::OUString& Filename, const css::uno::Any& ReadOnly, const css::uno::Sequence< css::beans::PropertyValue >& rProps ) throw (css::uno::RuntimeException);
|
||||
};
|
||||
|
||||
#endif /* SW_VBA_DOCUMENTS_HXX */
|
||||
|
|
|
@ -43,7 +43,7 @@ class SwVbaField : public SwVbaField_BASE
|
|||
css::uno::Reference< css::text::XTextDocument > mxTextDocument;
|
||||
css::uno::Reference< css::text::XTextField > mxTextField;
|
||||
public:
|
||||
SwVbaField( const css::uno::Reference< ooo::vba::XHelperInterface >& rParent, const css::uno::Reference< css::uno::XComponentContext >& rContext, const css::uno::Reference< css::text::XTextDocument >& rDocument, const css::uno::Reference< css::text::XTextField >& xTextField) throw ( css::uno::RuntimeException);;
|
||||
SwVbaField( const css::uno::Reference< ooo::vba::XHelperInterface >& rParent, const css::uno::Reference< css::uno::XComponentContext >& rContext, const css::uno::Reference< css::text::XTextDocument >& rDocument, const css::uno::Reference< css::text::XTextField >& xTextField) throw ( css::uno::RuntimeException);
|
||||
|
||||
// XHelperInterface
|
||||
virtual rtl::OUString& getServiceImplName();
|
||||
|
|
|
@ -65,7 +65,7 @@ sal_Int32 SwVbaStyle::getLanguageID( const uno::Reference< beans::XPropertySet >
|
|||
|
||||
void SwVbaStyle::setLanguageID( const uno::Reference< beans::XPropertySet >& xTCProps, sal_Int32 _languageid ) throw (uno::RuntimeException)
|
||||
{
|
||||
lang::Locale aLocale = MsLangId::convertLanguageToLocale( _languageid );
|
||||
lang::Locale aLocale = MsLangId::convertLanguageToLocale( static_cast<LanguageType>(_languageid) );
|
||||
xTCProps->setPropertyValue( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM("CharLocale") ), uno::makeAny( aLocale ) ) ;
|
||||
}
|
||||
|
||||
|
|
|
@ -13,9 +13,9 @@ class SwVbaTable : public SwVbaTable_BASE
|
|||
css::uno::Reference< css::text::XTextDocument > mxTextDocument;
|
||||
css::uno::Reference< css::text::XTextTable > mxTextTable;
|
||||
public:
|
||||
SwVbaTable( const css::uno::Reference< ooo::vba::XHelperInterface >& rParent, const css::uno::Reference< css::uno::XComponentContext >& rContext, const css::uno::Reference< css::text::XTextDocument >& rDocument, const css::uno::Reference< css::text::XTextTable >& xTextTable) throw ( css::uno::RuntimeException);;
|
||||
SwVbaTable( const css::uno::Reference< ooo::vba::XHelperInterface >& rParent, const css::uno::Reference< css::uno::XComponentContext >& rContext, const css::uno::Reference< css::text::XTextDocument >& rDocument, const css::uno::Reference< css::text::XTextTable >& xTextTable) throw ( css::uno::RuntimeException);
|
||||
css::uno::Reference< css::text::XTextDocument > getDocument() { return mxTextDocument; };
|
||||
virtual css::uno::Reference< ::ooo::vba::word::XRange > SAL_CALL Range( ) throw (css::script::BasicErrorException, css::uno::RuntimeException);;
|
||||
virtual css::uno::Reference< ::ooo::vba::word::XRange > SAL_CALL Range( ) throw (css::script::BasicErrorException, css::uno::RuntimeException);
|
||||
virtual void SAL_CALL Select( ) throw (css::script::BasicErrorException, css::uno::RuntimeException);
|
||||
virtual void SAL_CALL Delete( ) throw (css::script::BasicErrorException, css::uno::RuntimeException);
|
||||
virtual css::uno::Reference< ::ooo::vba::word::XRange > SAL_CALL ConvertToText( const css::uno::Any& Separator, const css::uno::Any& NestedTables ) throw (css::script::BasicErrorException, css::uno::RuntimeException);
|
||||
|
|
|
@ -51,7 +51,7 @@ namespace ooo
|
|||
css::uno::Reference< css::style::XStyle > getCurrentPageStyle( const css::uno::Reference< css::frame::XModel >& xModel ) throw (css::uno::RuntimeException);
|
||||
sal_Int32 getPageCount( const css::uno::Reference< css::frame::XModel>& xModel ) throw (css::uno::RuntimeException);
|
||||
|
||||
}; // word
|
||||
}; // vba
|
||||
}; // ooo
|
||||
} // word
|
||||
} // vba
|
||||
} // ooo
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue