summaryrefslogtreecommitdiff
path: root/uui
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2013-01-27 23:07:58 +0100
committerJulien Nabet <serval2412@yahoo.fr>2013-01-27 23:11:41 +0100
commitb8d4b8656f1f4e4782ba7460070e99babc8a499e (patch)
treead2931235c0db8cba968df4e30ed11c47f268f90 /uui
parentc3488487752d2083b9e8a45266fdc40df84be686 (diff)
Some cppcheck cleaning
Change-Id: I7217ab7500de5d8220b85e56aceb6e843bd0769f
Diffstat (limited to 'uui')
-rw-r--r--uui/source/fltdlg.cxx13
1 files changed, 7 insertions, 6 deletions
diff --git a/uui/source/fltdlg.cxx b/uui/source/fltdlg.cxx
index 2e333026fc19..27c644b23f39 100644
--- a/uui/source/fltdlg.cxx
+++ b/uui/source/fltdlg.cxx
@@ -53,12 +53,13 @@ namespace uui
*//*-*************************************************************************************************************/
FilterDialog::FilterDialog( Window* pParentWindow ,
ResMgr* pResMgr )
- : ModalDialog ( pParentWindow, ResId( DLG_FILTER_SELECT, *pResMgr ) )
- , m_ftURL ( this, ResId( FT_URL, *pResMgr ) )
- , m_lbFilters ( this, ResId( LB_FILTERS, *pResMgr ) )
- , m_btnOK ( this, ResId( BTN_OK, *pResMgr ) )
- , m_btnCancel ( this, ResId( BTN_CANCEL, *pResMgr ) )
- , m_btnHelp ( this, ResId( BTN_HELP, *pResMgr ) )
+ : ModalDialog (pParentWindow, ResId( DLG_FILTER_SELECT, *pResMgr ) )
+ , m_ftURL (this, ResId( FT_URL, *pResMgr))
+ , m_lbFilters (this, ResId( LB_FILTERS, *pResMgr))
+ , m_btnOK (this, ResId( BTN_OK, *pResMgr))
+ , m_btnCancel (this, ResId( BTN_CANCEL, *pResMgr))
+ , m_btnHelp (this, ResId( BTN_HELP, *pResMgr))
+ , m_pFilterNames(NULL)
{
FreeResource();
}