step 0 of an UNOization of the css.form.(X)FormController implementation: move the API to css.form.runtime, so we can later add new API chunks without breaking compatibility of the existing API in css.form

This commit is contained in:
Frank Schönheit 2009-10-23 09:46:03 +02:00
parent 407a89402e
commit cc6395630b
2 changed files with 3 additions and 3 deletions

View file

@ -124,7 +124,7 @@ public:
getReferredCells() throw(::com::sun::star::uno::RuntimeException);
// XFormLayerAccess
virtual ::com::sun::star::uno::Reference< ::com::sun::star::form::XFormController > SAL_CALL
virtual ::com::sun::star::uno::Reference< ::com::sun::star::form::runtime::XFormController > SAL_CALL
getFormController( const ::com::sun::star::uno::Reference<
::com::sun::star::form::XForm >& Form )
throw (::com::sun::star::uno::RuntimeException);

View file

@ -337,11 +337,11 @@ namespace
}
// XFormLayerAccess
uno::Reference< form::XFormController > SAL_CALL ScViewPaneBase::getFormController( const uno::Reference< form::XForm >& _Form ) throw (uno::RuntimeException)
uno::Reference< form::runtime::XFormController > SAL_CALL ScViewPaneBase::getFormController( const uno::Reference< form::XForm >& _Form ) throw (uno::RuntimeException)
{
ScUnoGuard aGuard;
uno::Reference< form::XFormController > xController;
uno::Reference< form::runtime::XFormController > xController;
Window* pWindow( NULL );
SdrView* pSdrView( NULL );