Skip to content
Snippets Groups Projects
Commit af85ca38 authored by Mike Antipov's avatar Mike Antipov
Browse files

fixed windows build (comparing BOOL & bool)

--HG--
branch : product-engine
parent ef68663a
No related branches found
No related tags found
No related merge requests found
...@@ -322,7 +322,7 @@ void LLCallFloater::updateSession() ...@@ -322,7 +322,7 @@ void LLCallFloater::updateSession()
{ {
S32 delta = 0; S32 delta = 0;
bool visible = !is_local_chat; bool visible = !is_local_chat;
if (leave_panel->getVisible() != visible) if ((bool)leave_panel->getVisible() != visible)
{ {
delta = visible delta = visible
? leave_panel->getRect().getHeight() ? leave_panel->getRect().getHeight()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment