summaryrefslogtreecommitdiffstats
path: root/offapi/com/sun/star/awt/XDialog.idl
diff options
context:
space:
mode:
Diffstat (limited to 'offapi/com/sun/star/awt/XDialog.idl')
-rw-r--r--offapi/com/sun/star/awt/XDialog.idl7
1 files changed, 0 insertions, 7 deletions
diff --git a/offapi/com/sun/star/awt/XDialog.idl b/offapi/com/sun/star/awt/XDialog.idl
index efc240243d1c..13d4860e20e0 100644
--- a/offapi/com/sun/star/awt/XDialog.idl
+++ b/offapi/com/sun/star/awt/XDialog.idl
@@ -22,36 +22,30 @@
#include <com/sun/star/uno/XInterface.idl>
-//=============================================================================
module com { module sun { module star { module awt {
-//=============================================================================
/** makes it possible to show and hide a dialog and gives access to
the title of the dialog.
*/
published interface XDialog: com::sun::star::uno::XInterface
{
- //-------------------------------------------------------------------------
/** sets the title of the dialog.
*/
[oneway] void setTitle( [in] string Title );
- //-------------------------------------------------------------------------
/** gets the title of the dialog.
*/
string getTitle();
- //-------------------------------------------------------------------------
/** shows the dialog.
*/
short execute();
- //-------------------------------------------------------------------------
/** hides the dialog and then causes <member>XDialog::execute</member>
to return.
@@ -60,7 +54,6 @@ published interface XDialog: com::sun::star::uno::XInterface
};
-//=============================================================================
}; }; }; };