aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden
diff options
context:
space:
mode:
authorMcCabe Maxsted2010-10-23 18:53:57 -0700
committerJacek Antonelli2010-11-04 23:21:06 -0500
commit0e5167b155be51f81b4d9aac5f91405a26742cf0 (patch)
treea9657eb23db2d316a9f7bebfff54186e5950f4ee /linden
parentChanged several Preferences modal alerts to notifications. (diff)
downloadmeta-impy-0e5167b155be51f81b4d9aac5f91405a26742cf0.zip
meta-impy-0e5167b155be51f81b4d9aac5f91405a26742cf0.tar.gz
meta-impy-0e5167b155be51f81b4d9aac5f91405a26742cf0.tar.bz2
meta-impy-0e5167b155be51f81b4d9aac5f91405a26742cf0.tar.xz
Fixed Windows compile error in impprefsfonts.cpp (unsafe mix of type 'bool' and type 'BOOL' in operation)
Diffstat (limited to '')
-rw-r--r--linden/indra/newview/impprefsfonts.cpp2
1 files changed, 1 insertions, 1 deletions
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()
107 LLCheckBoxCtrl* font_round = getChild<LLCheckBoxCtrl>("font_round"); 107 LLCheckBoxCtrl* font_round = getChild<LLCheckBoxCtrl>("font_round");
108 if (font_round) 108 if (font_round)
109 { 109 {
110 bool round = font_round->getValue().asBoolean(); 110 BOOL round = font_round->getValue().asBoolean();
111 if (round != gSavedSettings.getBOOL("FontSizeRounding")) 111 if (round != gSavedSettings.getBOOL("FontSizeRounding"))
112 { 112 {
113 gSavedSettings.setBOOL("FontSizeRounding", round); 113 gSavedSettings.setBOOL("FontSizeRounding", round);