summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/frame
diff options
context:
space:
mode:
authorThorsten Behrens <tbehrens@suse.com>2012-01-26 22:44:03 +0100
committerThorsten Behrens <tbehrens@suse.com>2012-01-26 22:45:27 +0100
commit00de339c15a048c874bc856e321973df0ea238de (patch)
tree8fd49099b100f4da6a6c2b426afc9f9fc9fd5a19 /offapi/com/sun/star/frame
parent596469d4183ff451833348cb4454ad0d02e0138f (diff)
Fixup over-ambitious previous revert.
There were actually some useful bits hidden in that mass-publishing of uno api.
Diffstat (limited to 'offapi/com/sun/star/frame')
-rw-r--r--offapi/com/sun/star/frame/XTitle.idl12
1 files changed, 9 insertions, 3 deletions
diff --git a/offapi/com/sun/star/frame/XTitle.idl b/offapi/com/sun/star/frame/XTitle.idl
index 59b82e8aca4e..51033e4d733d 100644
--- a/offapi/com/sun/star/frame/XTitle.idl
+++ b/offapi/com/sun/star/frame/XTitle.idl
@@ -36,17 +36,23 @@
module com { module sun { module star { module frame {
//=============================================================================
-/** todo document me
+/** an interface representing an entity with a modifyable title.
*/
interface XTitle : com::sun::star::uno::XInterface
{
//-------------------------------------------------------------------------
- /** todo document me
+ /** Returns the title of the object.
+ *
+ * @returns
+ * The title.
*/
string getTitle ();
//-------------------------------------------------------------------------
- /** todo document me
+ /** Sets the title of the object.
+ *
+ * @param sTitle
+ * The title.
*/
void setTitle ( [in] string sTitle );
};