summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorRichard Linden <none@none>2012-02-24 11:43:44 -0800
committerRichard Linden <none@none>2012-02-24 11:43:44 -0800
commit1b624f5ea686292652978c72d39e5546efe23d0f (patch)
tree77e58321d3422eefbb18837ab9d5c2b54e0f364d /indra
parent11d29660aa84a1a8a61e427698715497a57243c2 (diff)
potential fix for linux build
Diffstat (limited to 'indra')
-rw-r--r--indra/llui/llfloater.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llui/llfloater.cpp b/indra/llui/llfloater.cpp
index 3afa1b8e3a..22b20969fc 100644
--- a/indra/llui/llfloater.cpp
+++ b/indra/llui/llfloater.cpp
@@ -3275,7 +3275,7 @@ void LLFloater::stackWith(LLFloater& other)
}
LLCoordFloater::LLCoordFloater(F32 x, F32 y, LLFloater& floater)
-: coord_t(x, y)
+: coord_t((S32)x, (S32)y)
{
mFloater = floater.getHandle();
}