summaryrefslogtreecommitdiff
path: root/fpicker/source/office/iodlgimp.cxx
diff options
context:
space:
mode:
authorMartin Richard <martius@martiusweb.net>2012-01-31 00:44:34 +0100
committerCédric Bosdonnat <cedric.bosdonnat@free.fr>2012-04-02 18:30:39 +0200
commit5e301969bf1c8818b5c737757363c31584823485 (patch)
tree49afc9db14a2ebd38f177f90224ae8c221bace1a /fpicker/source/office/iodlgimp.cxx
parent149650b087ab5b15ef23e4ac6af5368b2820af1e (diff)
fpicker: a list of bookmarks in the file picker
under dual licences MPLv1+/LGPLv3+ Authors: Martin Richard <martius@martiusweb.net> Julien Levesy <jlevesy@gmail.com>
Diffstat (limited to 'fpicker/source/office/iodlgimp.cxx')
-rw-r--r--fpicker/source/office/iodlgimp.cxx12
1 files changed, 10 insertions, 2 deletions
diff --git a/fpicker/source/office/iodlgimp.cxx b/fpicker/source/office/iodlgimp.cxx
index 73dcbccdc247..4a7ffc5e8cec 100644
--- a/fpicker/source/office/iodlgimp.cxx
+++ b/fpicker/source/office/iodlgimp.cxx
@@ -360,9 +360,13 @@ SvtExpFileDlg_Impl::SvtExpFileDlg_Impl( WinBits ) :
_pBtnNewFolder ( NULL ),
_pBtnStandard ( NULL ),
_pCbPassword ( NULL ),
- _pFtCurrentPath ( NULL ),
+ _pEdCurrentPath ( NULL ),
_pCbAutoExtension ( NULL ),
_pCbOptions ( NULL ),
+ _pPlaces ( NULL ),
+ _pBtnConnectToServer( NULL ),
+ _pBtnAddPlace ( NULL ),
+ _pBtnRemovePlace ( NULL ),
_nState ( FILEDLG_STATE_REMOTE ),
_nStyle ( 0 ),
_bDoubleClick ( sal_False ),
@@ -378,7 +382,7 @@ SvtExpFileDlg_Impl::SvtExpFileDlg_Impl( WinBits ) :
SvtExpFileDlg_Impl::~SvtExpFileDlg_Impl()
{
- delete _pFtCurrentPath;
+ delete _pEdCurrentPath;
delete _pCbPassword;
delete _pCbAutoExtension;
delete _pCbOptions;
@@ -400,6 +404,10 @@ SvtExpFileDlg_Impl::~SvtExpFileDlg_Impl()
delete _pFtFileName;
delete _pUserFilter;
delete _pFilter;
+ delete _pPlaces;
+ delete _pBtnConnectToServer;
+ delete _pBtnAddPlace;
+ delete _pBtnRemovePlace;
}
//*****************************************************************************