summaryrefslogtreecommitdiff
path: root/fpicker
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-09-15 13:08:53 +0200
committerNoel Grandin <noel@peralex.com>2015-09-16 08:38:54 +0200
commit95be2bbe0fa82f4602fba2dedc73667d117bb5dc (patch)
tree6d88adfd052022c305bda7d2c58e31f22b52ae51 /fpicker
parentffb4d56c20b6866e5d0a732ba74b5cd3aace0770 (diff)
remove unused Link<> fields
Change-Id: I9898e04da6bebd1e08ab141e43439908fe1860b0
Diffstat (limited to 'fpicker')
-rw-r--r--fpicker/source/office/iodlg.cxx24
-rw-r--r--fpicker/source/office/iodlg.hxx5
2 files changed, 2 insertions, 27 deletions
diff --git a/fpicker/source/office/iodlg.cxx b/fpicker/source/office/iodlg.cxx
index a482e9b0e17e..b684ae9d34df 100644
--- a/fpicker/source/office/iodlg.cxx
+++ b/fpicker/source/office/iodlg.cxx
@@ -1220,18 +1220,7 @@ void SvtFileDialog::OpenHdl_Impl(void* pVoid)
OSL_FAIL("SvtFileDialog, OpenHdl_Impl: invalid mode!");
}
- // notify interested parties
- long nRet;
-
- if ( _aOKHdl.IsSet() )
- nRet = _aOKHdl.Call( this );
- else
- nRet = 1;
-
- if ( nRet )
- {
- EndDialog( RET_OK );
- }
+ EndDialog( RET_OK );
}
@@ -1475,16 +1464,7 @@ void SvtFileDialog::OpenMultiSelection_Impl()
if ( nCount && pEntry )
_aPath = SvtFileView::GetURL( pEntry );
- // notify interested parties
- long nRet;
-
- if ( _aOKHdl.IsSet() )
- nRet = _aOKHdl.Call( this );
- else
- nRet = 1;
-
- if ( nRet )
- EndDialog( RET_OK );
+ EndDialog( RET_OK );
}
diff --git a/fpicker/source/office/iodlg.hxx b/fpicker/source/office/iodlg.hxx
index f214c3d394e9..93c493426037 100644
--- a/fpicker/source/office/iodlg.hxx
+++ b/fpicker/source/office/iodlg.hxx
@@ -137,11 +137,6 @@ private:
protected:
virtual bool Notify( NotifyEvent& rNEvt ) SAL_OVERRIDE;
- // originally from VclFileDialog
- Link<> _aOKHdl;
- Link<> _aFileSelectHdl;
- Link<> _aFilterSelectHdl;
-
OUString _aPath;
OUString _aDefExt;