add missing braces to quiet gcc warnings about missing braces around initializer
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35158 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -2767,7 +2767,8 @@ wxMacMLTEHIViewControl::wxMacMLTEHIViewControl( wxTextCtrl *wxPeer,
|
|||||||
wxString st = str ;
|
wxString st = str ;
|
||||||
wxMacConvertNewlines10To13( &st ) ;
|
wxMacConvertNewlines10To13( &st ) ;
|
||||||
|
|
||||||
HIRect hr = { bounds.left , bounds.top , bounds.right - bounds.left , bounds.bottom- bounds.top } ;
|
HIRect hr = { { bounds.left , bounds.top} ,
|
||||||
|
{ bounds.right - bounds.left , bounds.bottom - bounds.top} } ;
|
||||||
|
|
||||||
m_scrollView = NULL ;
|
m_scrollView = NULL ;
|
||||||
TXNFrameOptions frameOptions = FrameOptionsFromWXStyle( style ) ;
|
TXNFrameOptions frameOptions = FrameOptionsFromWXStyle( style ) ;
|
||||||
|
Reference in New Issue
Block a user