diff options
author | McCabe Maxsted | 2010-10-23 18:53:57 -0700 |
---|---|---|
committer | Jacek Antonelli | 2010-11-04 23:21:06 -0500 |
commit | 0e5167b155be51f81b4d9aac5f91405a26742cf0 (patch) | |
tree | a9657eb23db2d316a9f7bebfff54186e5950f4ee | |
parent | Changed several Preferences modal alerts to notifications. (diff) | |
download | meta-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.cpp | 2 |
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); |