summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/awt/XFileDialog.idl
diff options
context:
space:
mode:
Diffstat (limited to 'offapi/com/sun/star/awt/XFileDialog.idl')
-rw-r--r--offapi/com/sun/star/awt/XFileDialog.idl8
1 files changed, 0 insertions, 8 deletions
diff --git a/offapi/com/sun/star/awt/XFileDialog.idl b/offapi/com/sun/star/awt/XFileDialog.idl
index e7ee1f1ffbc4..1491645b20c6 100644
--- a/offapi/com/sun/star/awt/XFileDialog.idl
+++ b/offapi/com/sun/star/awt/XFileDialog.idl
@@ -22,11 +22,9 @@
#include <com/sun/star/uno/XInterface.idl>
-//=============================================================================
module com { module sun { module star { module awt {
-//=============================================================================
/** gives access to a file dialog.
@@ -34,32 +32,27 @@
*/
published interface XFileDialog: com::sun::star::uno::XInterface
{
- //-------------------------------------------------------------------------
/** sets the path.
*/
[oneway] void setPath( [in] string Path );
- //-------------------------------------------------------------------------
/** returns the path.
*/
string getPath();
- //-------------------------------------------------------------------------
/** sets the filters.
*/
[oneway] void setFilters( [in] sequence<string> rFilterNames,
[in] sequence<string> rMasks );
- //-------------------------------------------------------------------------
/** sets the current filter.
*/
[oneway] void setCurrentFilter( [in] string Filter );
- //-------------------------------------------------------------------------
/** returns the currently selected filter.
*/
@@ -67,7 +60,6 @@ published interface XFileDialog: com::sun::star::uno::XInterface
};
-//=============================================================================
}; }; }; };