Fix warnings.

This commit is contained in:
Richard Kimberly Heck 2020-05-18 00:46:58 -04:00
parent 2de99c5dd9
commit d7dde0c723

View File

@ -59,7 +59,7 @@ namespace frontend {
struct InsetParamsDialog::Private struct InsetParamsDialog::Private
{ {
Private() : widget_(0), inset_(0), changed_(false) {} Private() : widget_(nullptr), inset_(nullptr), changed_(false) {}
/// ///
InsetParamsWidget * widget_; InsetParamsWidget * widget_;
/// The inset that was used at last Restore or Apply operation. /// The inset that was used at last Restore or Apply operation.
@ -312,7 +312,8 @@ Dialog * createDialog(GuiView & lv, InsetCode code)
case VSPACE_CODE: case VSPACE_CODE:
widget = new GuiVSpace; widget = new GuiVSpace;
break; break;
default: return 0; default:
return nullptr;
} }
InsetParamsDialog * dialog = new InsetParamsDialog(lv, widget); InsetParamsDialog * dialog = new InsetParamsDialog(lv, widget);
return dialog; return dialog;