Kaydet (Commit) 4d8766a2 authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#707869 Uninitialized scalar field

Change-Id: Ifd61e6d2af525539f759dbdabc190a7b14fc19fd
üst ce45e313
......@@ -61,14 +61,22 @@ class FWE_DLLPUBLIC MenuConfiguration
public:
struct Attributes
{
Attributes() {}
Attributes( const OUString& aFrame, const OUString& aImageIdStr ) :
aTargetFrame( aFrame ), aImageId( aImageIdStr ) {}
Attributes()
: nStyle(0)
{
}
Attributes( const OUString& aFrame, const OUString& aImageIdStr )
: aTargetFrame(aFrame)
, aImageId(aImageIdStr)
, nStyle(0)
{
}
OUString aTargetFrame;
OUString aImageId;
::com::sun::star::uno::WeakReference< ::com::sun::star::frame::XDispatchProvider > xDispatchProvider;
sal_Int16 nStyle;
sal_Int16 nStyle;
};
MenuConfiguration(
......
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