summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/awt
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2003-06-27 08:01:01 +0000
committerVladimir Glazounov <vg@openoffice.org>2003-06-27 08:01:01 +0000
commitac42ee41c6d9f544a8e424f319527f75333275cd (patch)
tree4e4433775396a793a4826821fe869d12342b364d /offapi/com/sun/star/awt
parent26404627426114276d58eb683f208408c42908d0 (diff)
INTEGRATION: CWS tbe4 (1.8.66); FILE MERGED
2003/06/23 13:22:34 tbe 1.8.66.1: #56751# IDL review
Diffstat (limited to 'offapi/com/sun/star/awt')
-rw-r--r--offapi/com/sun/star/awt/XFileDialog.idl29
1 files changed, 15 insertions, 14 deletions
diff --git a/offapi/com/sun/star/awt/XFileDialog.idl b/offapi/com/sun/star/awt/XFileDialog.idl
index 0d8b78f7ccb7..bbf4914a2f25 100644
--- a/offapi/com/sun/star/awt/XFileDialog.idl
+++ b/offapi/com/sun/star/awt/XFileDialog.idl
@@ -2,9 +2,9 @@
*
* $RCSfile: XFileDialog.idl,v $
*
- * $Revision: 1.8 $
+ * $Revision: 1.9 $
*
- * last change: $Author: hr $ $Date: 2003-03-26 13:52:47 $
+ * last change: $Author: vg $ $Date: 2003-06-27 09:01:01 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -72,40 +72,41 @@
//=============================================================================
-// DocMerge from xml: interface com::sun::star::awt::XFileDialog
-/** @deprecated
+/** gives access to a file dialog.
+
+ @deprecated
*/
interface XFileDialog: com::sun::star::uno::XInterface
{
//-------------------------------------------------------------------------
- // DOCUMENTATION OMITTED FOR XFileDialog::setPath
- // DocMerge: empty anyway
+ /** sets the path.
+ */
[oneway] void setPath( [in] string Path );
//-------------------------------------------------------------------------
- // DOCUMENTATION OMITTED FOR XFileDialog::getPath
- // DocMerge: empty anyway
+ /** returns the path.
+ */
string getPath();
//-------------------------------------------------------------------------
- // DOCUMENTATION OMITTED FOR XFileDialog::setFilters
- // DocMerge: empty anyway
+ /** sets the filters.
+ */
[oneway] void setFilters( [in] sequence<string> rFilterNames,
[in] sequence<string> rMasks );
//-------------------------------------------------------------------------
- // DOCUMENTATION OMITTED FOR XFileDialog::setCurrentFilter
- // DocMerge: empty anyway
+ /** sets the current filter.
+ */
[oneway] void setCurrentFilter( [in] string Filter );
//-------------------------------------------------------------------------
- // DOCUMENTATION OMITTED FOR XFileDialog::getCurrentFilter
- // DocMerge: empty anyway
+ /** returns the currently selected filter.
+ */
string getCurrentFilter();
};