From 0e5167b155be51f81b4d9aac5f91405a26742cf0 Mon Sep 17 00:00:00 2001 From: McCabe Maxsted Date: Sat, 23 Oct 2010 18:53:57 -0700 Subject: Fixed Windows compile error in impprefsfonts.cpp (unsafe mix of type 'bool' and type 'BOOL' in operation) --- linden/indra/newview/impprefsfonts.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'linden') diff --git a/linden/indra/newview/impprefsfonts.cpp b/linden/indra/newview/impprefsfonts.cpp index bf0b028..a4dcd34 100644 --- a/linden/indra/newview/impprefsfonts.cpp +++ b/linden/indra/newview/impprefsfonts.cpp @@ -107,7 +107,7 @@ void ImpPrefsFonts::apply() LLCheckBoxCtrl* font_round = getChild("font_round"); if (font_round) { - bool round = font_round->getValue().asBoolean(); + BOOL round = font_round->getValue().asBoolean(); if (round != gSavedSettings.getBOOL("FontSizeRounding")) { gSavedSettings.setBOOL("FontSizeRounding", round); -- cgit v1.1