From: Włodzimierz Skiba Date: Wed, 8 Dec 2004 17:15:06 +0000 (+0000) Subject: Fixed bug with lack of return default style if Ok() fails. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/57e7524bad6eef9139f353e92fd237a83e81e56a Fixed bug with lack of return default style if Ok() fails. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@30899 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/contrib/include/wx/foldbar/foldpanelbar.h b/contrib/include/wx/foldbar/foldpanelbar.h index 12586b5d8f..6ad9ed0ada 100644 --- a/contrib/include/wx/foldbar/foldpanelbar.h +++ b/contrib/include/wx/foldbar/foldpanelbar.h @@ -267,7 +267,7 @@ public: /** Returns the currently used caption style for the wxFoldPanel. It is returned as a wxCaptionBarStyle class. after modifying it, it can be set again */ wxCaptionBarStyle GetCaptionStyle(wxFoldPanel &fp) const { - wxCHECK2(fp.IsOk(), wxEmptyCaptionBarStyle); + wxCHECK2(fp.IsOk(), return wxEmptyCaptionBarStyle); return fp.GetItem()->GetCaptionStyle(); };