diff options
author | Frank Schoenheit [fs] <frank.schoenheit@sun.com> | 2009-12-11 11:28:14 +0100 |
---|---|---|
committer | Frank Schoenheit [fs] <frank.schoenheit@sun.com> | 2009-12-11 11:28:14 +0100 |
commit | 78e16138e84c0bbcf30695c007ea55e81bbbdad7 (patch) | |
tree | afd00dbcf21cb41cfb39246cc1acaebbeb676c93 /sfx2/inc/frmload.hxx | |
parent | b0b2b403d0bdda9544a2d4b920367c410ed1680f (diff) |
autorecovery: made JumpMark a argument of the to-be-created view.
For this purpose, the loader moves this argument from the loader args to the args which are later
passed to XModel2.createViewController, and the Controller implementation retrieves it from there.
(In this course, XController2.getCreationArguments has been introduced, and implemented in the two
known XController2 implementations in the code base.)
Diffstat (limited to 'sfx2/inc/frmload.hxx')
-rw-r--r-- | sfx2/inc/frmload.hxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sfx2/inc/frmload.hxx b/sfx2/inc/frmload.hxx index b2a59df1018c..5fd13c1bf088 100644 --- a/sfx2/inc/frmload.hxx +++ b/sfx2/inc/frmload.hxx @@ -142,6 +142,11 @@ private: sal_Int16 impl_determineEffectiveViewId_nothrow( const SfxObjectShell& i_rDocument, + const ::comphelper::NamedValueCollection& i_rDescriptor + ); + + ::comphelper::NamedValueCollection + impl_extractViewCreationArgs( ::comphelper::NamedValueCollection& io_rDescriptor ); }; |