summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/frame
diff options
context:
space:
mode:
Diffstat (limited to 'offapi/com/sun/star/frame')
-rw-r--r--offapi/com/sun/star/frame/ModuleManager.idl2
-rw-r--r--offapi/com/sun/star/frame/UnknownModuleException.idl2
-rw-r--r--offapi/com/sun/star/frame/XController2.idl2
-rw-r--r--offapi/com/sun/star/frame/XLayoutManager.idl2
-rw-r--r--offapi/com/sun/star/frame/XLayoutManagerEventBroadcaster.idl2
-rw-r--r--offapi/com/sun/star/frame/XLayoutManagerListener.idl2
-rw-r--r--offapi/com/sun/star/frame/XModuleManager.idl2
-rw-r--r--offapi/com/sun/star/frame/XTitle.idl14
8 files changed, 11 insertions, 17 deletions
diff --git a/offapi/com/sun/star/frame/ModuleManager.idl b/offapi/com/sun/star/frame/ModuleManager.idl
index a93fdb8b74de..6f682d9ae8e0 100644
--- a/offapi/com/sun/star/frame/ModuleManager.idl
+++ b/offapi/com/sun/star/frame/ModuleManager.idl
@@ -47,7 +47,7 @@ module com { module sun { module star { module frame {
@since OOo 2.0
*/
-published service ModuleManager
+service ModuleManager
{
//-------------------------------------------
/** provides functions to identify office modules.
diff --git a/offapi/com/sun/star/frame/UnknownModuleException.idl b/offapi/com/sun/star/frame/UnknownModuleException.idl
index 6d80c7fef07f..4a98a86aea03 100644
--- a/offapi/com/sun/star/frame/UnknownModuleException.idl
+++ b/offapi/com/sun/star/frame/UnknownModuleException.idl
@@ -41,7 +41,7 @@ module com { module sun { module star { module frame {
@since OOo 2.0
*/
-published exception UnknownModuleException : ::com::sun::star::uno::Exception
+exception UnknownModuleException : ::com::sun::star::uno::Exception
{
};
diff --git a/offapi/com/sun/star/frame/XController2.idl b/offapi/com/sun/star/frame/XController2.idl
index abad9aa9b244..824ce0687fd1 100644
--- a/offapi/com/sun/star/frame/XController2.idl
+++ b/offapi/com/sun/star/frame/XController2.idl
@@ -42,7 +42,7 @@ module com { module sun { module star { module frame {
@since OOo 3.0
*/
-published interface XController2 : XController
+interface XController2 : XController
{
/** denotes the "root window" of the controller.
diff --git a/offapi/com/sun/star/frame/XLayoutManager.idl b/offapi/com/sun/star/frame/XLayoutManager.idl
index 819d7c897b80..8511de308369 100644
--- a/offapi/com/sun/star/frame/XLayoutManager.idl
+++ b/offapi/com/sun/star/frame/XLayoutManager.idl
@@ -76,7 +76,7 @@ module com { module sun { module star { module frame {
@since OOo 2.0
*/
-published interface XLayoutManager : com::sun::star::uno::XInterface
+interface XLayoutManager : com::sun::star::uno::XInterface
{
/** attaches a <type scope="com::sun::star::frame">XFrame</type> to a layout manager.
diff --git a/offapi/com/sun/star/frame/XLayoutManagerEventBroadcaster.idl b/offapi/com/sun/star/frame/XLayoutManagerEventBroadcaster.idl
index 4a999c297af2..f87eea4437ca 100644
--- a/offapi/com/sun/star/frame/XLayoutManagerEventBroadcaster.idl
+++ b/offapi/com/sun/star/frame/XLayoutManagerEventBroadcaster.idl
@@ -42,7 +42,7 @@
@since OOo 2.0
*/
-published interface XLayoutManagerEventBroadcaster : com::sun::star::uno::XInterface
+interface XLayoutManagerEventBroadcaster : com::sun::star::uno::XInterface
{
/** adds a layout manager event listener to the object's listener list.
diff --git a/offapi/com/sun/star/frame/XLayoutManagerListener.idl b/offapi/com/sun/star/frame/XLayoutManagerListener.idl
index 6520474cd861..8716d739d353 100644
--- a/offapi/com/sun/star/frame/XLayoutManagerListener.idl
+++ b/offapi/com/sun/star/frame/XLayoutManagerListener.idl
@@ -48,7 +48,7 @@ module com { module sun { module star { module frame {
@since OOo 2.0
*/
-published interface XLayoutManagerListener : com::sun::star::lang::XEventListener
+interface XLayoutManagerListener : com::sun::star::lang::XEventListener
{
//=============================================================================
/** is invoked when a layout manager has made a certain operation.
diff --git a/offapi/com/sun/star/frame/XModuleManager.idl b/offapi/com/sun/star/frame/XModuleManager.idl
index db14825f668a..f3a48e18796a 100644
--- a/offapi/com/sun/star/frame/XModuleManager.idl
+++ b/offapi/com/sun/star/frame/XModuleManager.idl
@@ -42,7 +42,7 @@ module com { module sun { module star { module frame {
@since OOo 2.0
*/
-published interface XModuleManager : com::sun::star::uno::XInterface
+interface XModuleManager : com::sun::star::uno::XInterface
{
//-------------------------------------------
/**
diff --git a/offapi/com/sun/star/frame/XTitle.idl b/offapi/com/sun/star/frame/XTitle.idl
index d93c25b98005..59b82e8aca4e 100644
--- a/offapi/com/sun/star/frame/XTitle.idl
+++ b/offapi/com/sun/star/frame/XTitle.idl
@@ -36,23 +36,17 @@
module com { module sun { module star { module frame {
//=============================================================================
-/** an interface representing an entity with a modifyable title.
+/** todo document me
*/
-published interface XTitle : com::sun::star::uno::XInterface
+interface XTitle : com::sun::star::uno::XInterface
{
//-------------------------------------------------------------------------
- /** Returns the title of the object.
- *
- * @returns
- * The title.
+ /** todo document me
*/
string getTitle ();
//-------------------------------------------------------------------------
- /** Sets the title of the object.
- *
- * @param sTitle
- * The title.
+ /** todo document me
*/
void setTitle ( [in] string sTitle );
};