Kaydet (Commit) 0526048e authored tarafından Tor Lillqvist's avatar Tor Lillqvist

WaE: implicit conversion (IntegralCast) from bool to 'long'

Change-Id: If0d7ca02e8ecbc15eabc7807a71554ce11d92552
üst 8f5444e8
......@@ -4015,7 +4015,7 @@ long X11SalFrame::Dispatch( XEvent *pEvent )
}
bMapped_ = true;
bViewable_ = true;
nRet = true;
nRet = 1;
if ( mpInputContext != NULL )
mpInputContext->Map( this );
CallCallback( SALEVENT_RESIZE, NULL );
......@@ -4075,7 +4075,7 @@ long X11SalFrame::Dispatch( XEvent *pEvent )
{
bMapped_ = false;
bViewable_ = false;
nRet = true;
nRet = 1;
if ( mpInputContext != NULL )
mpInputContext->Unmap( this );
CallCallback( SALEVENT_RESIZE, NULL );
......@@ -4090,7 +4090,7 @@ long X11SalFrame::Dispatch( XEvent *pEvent )
case VisibilityNotify:
nVisibility_ = pEvent->xvisibility.state;
nRet = true;
nRet = 1;
if( bAlwaysOnTop_
&& bMapped_
&& ! GetDisplay()->getWMAdaptor()->isAlwaysOnTopOK()
......
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