[Libreoffice-commits] .: cui/source
Caolán McNamara
caolan at kemper.freedesktop.org
Thu Dec 9 07:12:44 PST 2010
cui/source/dialogs/thesdlg.cxx | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
New commits:
commit 0306a22c81c999199935a783e409dcd022457cfb
Author: Caolán McNamara <caolanm at redhat.com>
Date: Thu Dec 9 12:13:02 2010 +0000
cppcheck: uninit member variables
diff --git a/cui/source/dialogs/thesdlg.cxx b/cui/source/dialogs/thesdlg.cxx
index 3abe771..a964a95 100644
--- a/cui/source/dialogs/thesdlg.cxx
+++ b/cui/source/dialogs/thesdlg.cxx
@@ -131,9 +131,9 @@ IMPL_LINK( LookUpComboBox_Impl, ModifyTimer_Hdl, Timer *, EMPTYARG /*pTimer*/ )
// class ReplaceEdit_Impl --------------------------------------------------
-ReplaceEdit_Impl::ReplaceEdit_Impl(
- Window *pParent, const ResId &rResId ) :
- Edit (pParent, rResId)
+ReplaceEdit_Impl::ReplaceEdit_Impl( Window *pParent, const ResId &rResId )
+ : Edit(pParent, rResId)
+ , m_pBtn(NULL)
{
}
More information about the Libreoffice-commits
mailing list