diff options
author | Daniel Rentz <dr@openoffice.org> | 2010-04-16 14:47:11 +0200 |
---|---|---|
committer | Daniel Rentz <dr@openoffice.org> | 2010-04-16 14:47:11 +0200 |
commit | 7d7fc88ec456d716350f24c4eb6ce5fa2de4b440 (patch) | |
tree | f3888858f8864c12062e94b1bc3f0f26946674fa | |
parent | 64da8a9b1cda404727ab3d70c01bf6deedaf8614 (diff) |
npower13_objectmodules: use document frame from media descriptor
-rw-r--r-- | offapi/com/sun/star/document/MediaDescriptor.idl | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/offapi/com/sun/star/document/MediaDescriptor.idl b/offapi/com/sun/star/document/MediaDescriptor.idl index 72690a45eccd..89a3141a443d 100644 --- a/offapi/com/sun/star/document/MediaDescriptor.idl +++ b/offapi/com/sun/star/document/MediaDescriptor.idl @@ -51,6 +51,10 @@ #include <com/sun/star/task/XStatusIndicator.idl> #endif +#ifndef __com_sun_star_frame_XFrame_idl__ +#include <com/sun/star/frame/XFrame.idl> +#endif + //============================================================================= module com { module sun { module star { module document { @@ -594,6 +598,11 @@ published service MediaDescriptor @since OOo 3.0 */ [optional,property] string ViewControllerName; + //------------------------------------------------------------------------- + + /** specifies the frame containing the document. May be empty. + */ + [optional,property] com::sun::star::frame::XFrame Frame; }; //============================================================================= |