summaryrefslogtreecommitdiff
path: root/uui/source/logindlg.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sb@openoffice.org>2000-10-04 12:16:57 +0000
committerStephan Bergmann <sb@openoffice.org>2000-10-04 12:16:57 +0000
commitd5a21e30af4996bf62a93e8eceb8098194fcfae9 (patch)
tree20fdaaee4b39a3a2f543c3336210aae19f74ae9e /uui/source/logindlg.cxx
parent75ee5778f75174b4e101fd10ce6f6cdf601c5565 (diff)
Removed obsolete use of DirEntry from LoginDialog::PathHdl_Impl().
Diffstat (limited to 'uui/source/logindlg.cxx')
-rw-r--r--uui/source/logindlg.cxx12
1 files changed, 3 insertions, 9 deletions
diff --git a/uui/source/logindlg.cxx b/uui/source/logindlg.cxx
index eb9381d2940f..994c94d9bb4a 100644
--- a/uui/source/logindlg.cxx
+++ b/uui/source/logindlg.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: logindlg.cxx,v $
*
- * $Revision: 1.1.1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: hr $ $Date: 2000-09-18 17:04:11 $
+ * last change: $Author: sb $ $Date: 2000-10-04 13:16:57 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -62,9 +62,6 @@
#ifndef _SVT_FILEDLG_HXX
#include <svtools/filedlg.hxx>
#endif
-#ifndef _FSYS_HXX
-#include <tools/fsys.hxx>
-#endif
#ifndef _SV_MSGBOX_HXX
#include <vcl/msgbox.hxx>
#endif
@@ -252,9 +249,7 @@ IMPL_LINK( LoginDialog, OKHdl_Impl, OKButton *, EMPTYARG )
IMPL_LINK( LoginDialog, PathHdl_Impl, PushButton *, EMPTYARG )
{
PathDialog* pDlg = new PathDialog( this, WB_3DLOOK );
- DirEntry aEntry;
- aEntry.ToAbs();
- pDlg->SetPath( aEntry.GetFull() );
+ pDlg->SetPath( aPathED.GetText() );
if ( pDlg->Execute() == RET_OK )
aPathED.SetText( pDlg->GetPath() );
@@ -348,4 +343,3 @@ void LoginDialog::ClearAccount()
aAccountED.SetText( String() );
aAccountED.GrabFocus();
};
-