diff options
author | Josh Bell <josh@lindenlab.com> | 2007-03-09 01:09:20 +0000 |
---|---|---|
committer | Josh Bell <josh@lindenlab.com> | 2007-03-09 01:09:20 +0000 |
commit | b36dc363061ec5bf6b092c14193198e9a5eef816 (patch) | |
tree | b067586bd545dfa6dce9dd0b1243b9c0aa143f33 /indra/newview/llfloaterproperties.cpp | |
parent | 6fa974fc64b172a7324b28d40f08f2a861d87f8d (diff) |
svn merge -r 58902:58986 svn+ssh://svn.lindenlab.com/svn/linden/branches/maintenance --> release
Diffstat (limited to 'indra/newview/llfloaterproperties.cpp')
-rw-r--r-- | indra/newview/llfloaterproperties.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llfloaterproperties.cpp b/indra/newview/llfloaterproperties.cpp index 793884e008..feeedc5190 100644 --- a/indra/newview/llfloaterproperties.cpp +++ b/indra/newview/llfloaterproperties.cpp @@ -214,7 +214,7 @@ void LLFloaterProperties::refresh() "RadioSaleType", "EditPrice" }; - for(int t=0;t<sizeof(enableNames)/sizeof(char*);t++) + for(size_t t=0; t<sizeof(enableNames)/sizeof(char*); ++t) { childSetEnabled(enableNames[t],false); } @@ -225,7 +225,7 @@ void LLFloaterProperties::refresh() "EveryoneMaskDebug", "NextMaskDebug" }; - for(int t=0;t<sizeof(hideNames)/sizeof(char*);t++) + for(size_t t=0; t<sizeof(hideNames)/sizeof(char*); ++t) { childSetVisible(hideNames[t],false); } |