summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/awt/XMessageBox.idl
diff options
context:
space:
mode:
Diffstat (limited to 'offapi/com/sun/star/awt/XMessageBox.idl')
-rw-r--r--offapi/com/sun/star/awt/XMessageBox.idl35
1 files changed, 9 insertions, 26 deletions
diff --git a/offapi/com/sun/star/awt/XMessageBox.idl b/offapi/com/sun/star/awt/XMessageBox.idl
index ec9b4f083786..070b8a853e58 100644
--- a/offapi/com/sun/star/awt/XMessageBox.idl
+++ b/offapi/com/sun/star/awt/XMessageBox.idl
@@ -21,45 +21,28 @@
#include <com/sun/star/uno/XInterface.idl>
-
-
- module com { module sun { module star { module awt {
-
+module com { module sun { module star { module awt {
/** gives access to a message box.
-
- @deprecated
*/
-published interface XMessageBox: com::sun::star::uno::XInterface
+published interface XMessageBox
{
-
- /** sets the caption text.
- */
- void setCaptionText( [in] string aText );
-
-
- /** returns the caption text.
+ /** the caption text.
*/
- string getCaptionText();
+ [attribute] string CaptionText;
-
- /** sets the message text.
- */
- void setMessageText( [in] string aText );
-
-
- /** returns the message text.
+ /** the message text.
*/
- string getMessageText();
-
+ [attribute] string MessageText;
/** shows the message box.
+
+ @return
+ one of <type>MessageBoxResults</type>.
*/
short execute();
-
};
-
}; }; }; };
#endif