summaryrefslogtreecommitdiff
path: root/fpicker
diff options
context:
space:
mode:
authorTino Rachui <tra@openoffice.org>2001-08-10 11:12:37 +0000
committerTino Rachui <tra@openoffice.org>2001-08-10 11:12:37 +0000
commit933493cd5a26d63e321e7ab406c2e7c7806e6153 (patch)
tree7703efb894efcc0340308d894b04c2e0d8426af8 /fpicker
parent0cd1092a9693bf9c4969bbf79bf8d4c130439798 (diff)
#89230#changed method name getDisplayDirectory -> getLastDisplayDirectory
Diffstat (limited to 'fpicker')
-rw-r--r--fpicker/source/win32/filepicker/FileOpenDlg.cxx6
-rw-r--r--fpicker/source/win32/filepicker/FileOpenDlg.hxx9
2 files changed, 7 insertions, 8 deletions
diff --git a/fpicker/source/win32/filepicker/FileOpenDlg.cxx b/fpicker/source/win32/filepicker/FileOpenDlg.cxx
index 9a57e8e42303..2e6cedeced89 100644
--- a/fpicker/source/win32/filepicker/FileOpenDlg.cxx
+++ b/fpicker/source/win32/filepicker/FileOpenDlg.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: FileOpenDlg.cxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: tra $ $Date: 2001-07-09 12:58:25 $
+ * last change: $Author: tra $ $Date: 2001-08-10 12:12:37 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -249,7 +249,7 @@ void SAL_CALL CFileOpenDialog::setDisplayDirectory( const OUString& aDirectory )
//
//------------------------------------------------------------------------
-rtl::OUString SAL_CALL CFileOpenDialog::getDisplayDirectory( ) const
+rtl::OUString SAL_CALL CFileOpenDialog::getLastDisplayDirectory( ) const
{
return m_displayDirectory;
}
diff --git a/fpicker/source/win32/filepicker/FileOpenDlg.hxx b/fpicker/source/win32/filepicker/FileOpenDlg.hxx
index 11211e65b08e..02ba251f79da 100644
--- a/fpicker/source/win32/filepicker/FileOpenDlg.hxx
+++ b/fpicker/source/win32/filepicker/FileOpenDlg.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: FileOpenDlg.hxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: tra $ $Date: 2001-07-09 12:58:25 $
+ * last change: $Author: tra $ $Date: 2001-08-10 12:12:37 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -182,7 +182,7 @@ public:
virtual void SAL_CALL setDisplayDirectory( const rtl::OUString& aDirectory );
// returns only the path of the selected file
- virtual rtl::OUString SAL_CALL getDisplayDirectory( ) const;
+ virtual rtl::OUString SAL_CALL getLastDisplayDirectory( ) const;
// returns the full file name including drive letter, path
// file name and file extension
@@ -248,8 +248,6 @@ public:
// returns the last dialog error that occured
sal_uInt32 SAL_CALL getLastDialogError( ) const;
-protected:
-
// retrievs the currently selected file
// including path and drive information
// can be called only if the dialog is
@@ -263,6 +261,7 @@ protected:
// without drive and path
rtl::OUString SAL_CALL getCurrentFileName( ) const;
+protected:
// have to be overwritten when subclasses
// want to do special pre- and post-modal
// processing