Kaydet (Commit) 826e43ed authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#708569 Uninitialized scalar field

Change-Id: Ibe5ff56f9b068dd438ecd92f99fdd2a91b604165
üst 0825c92c
......@@ -48,11 +48,12 @@ private:
bool m_bRecommendToOpenReadonly;
public:
LoginErrorInfo()
: m_nFlags( LOGINERROR_FLAG_MODIFY_USER_NAME ),
m_nRet( ERRCODE_BUTTON_CANCEL )
{
}
LoginErrorInfo()
: m_nFlags(LOGINERROR_FLAG_MODIFY_USER_NAME)
, m_nRet(ERRCODE_BUTTON_CANCEL)
, m_bRecommendToOpenReadonly(false)
{
}
const OUString& GetTitle() const { return m_aTitle; }
const OUString& GetServer() const { return m_aServer; }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment