diff options
Diffstat (limited to 'fpicker')
-rw-r--r-- | fpicker/source/office/PlacesListBox.hxx | 7 | ||||
-rw-r--r-- | fpicker/source/office/iodlg.cxx | 2 |
2 files changed, 5 insertions, 4 deletions
diff --git a/fpicker/source/office/PlacesListBox.hxx b/fpicker/source/office/PlacesListBox.hxx index 49dc83e07788..26daca473fea 100644 --- a/fpicker/source/office/PlacesListBox.hxx +++ b/fpicker/source/office/PlacesListBox.hxx @@ -48,14 +48,17 @@ class Place public: - Place( rtl::OUString sName, rtl::OUString sUrl, bool bEditable = false) : + Place( rtl::OUString sName, rtl::OUString sUrl, bool bEditable = false ) : msName( sName ), maUrl( sUrl ), mbEditable( bEditable ) {}; ~Place( ) {}; - Place( const Place& rCopy ) : msName( rCopy.msName ), maUrl( rCopy.maUrl ) { }; + Place( const Place& rCopy ) : + msName( rCopy.msName ), + maUrl( rCopy.maUrl ), + mbEditable( rCopy.mbEditable ) { }; void SetName(const rtl::OUString& aName ) { msName = aName; } void SetUrl(const rtl::OUString& aUrl ) { maUrl.SetURL( aUrl ); } diff --git a/fpicker/source/office/iodlg.cxx b/fpicker/source/office/iodlg.cxx index cc57c5bc7565..b68edbe0b422 100644 --- a/fpicker/source/office/iodlg.cxx +++ b/fpicker/source/office/iodlg.cxx @@ -1982,8 +1982,6 @@ void SvtFileDialog::onAsyncOperationFinished() _pImp->_pEdFileName->GrabFocus(); // (if m_bInExecuteAsync is true, then the operation was finished within the minium wait time, // and to the user, the operation appears to be synchronous) - - _pImp->_pBtnRemovePlace->Disable(); } //----------------------------------------------------------------------------- |