diff options
author | Oz Linden <oz@lindenlab.com> | 2011-05-21 07:22:18 -0400 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2011-05-21 07:22:18 -0400 |
commit | 99fe1004a6cb4406bcac790420a5be6269e02723 (patch) | |
tree | 8ae31426336b7fede5e7c3ca0bbdd8360155147e | |
parent | 60f54abb33a8a0f4f3bd0fa23aee84d695486f92 (diff) |
fix oops when cleaning up temporary ifndefs
-rw-r--r-- | indra/newview/llfloaterregioninfo.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/indra/newview/llfloaterregioninfo.cpp b/indra/newview/llfloaterregioninfo.cpp index 2c128bdacf..de959f83e0 100644 --- a/indra/newview/llfloaterregioninfo.cpp +++ b/indra/newview/llfloaterregioninfo.cpp @@ -1228,7 +1228,7 @@ BOOL LLPanelRegionTerrainInfo::sendUpdate() strings.push_back(buffer); buffer = llformat("%f", estate_sun_hour); strings.push_back(buffer); -#endif TMP_DISABLE_WLES +#endif // TMP_DISABLE_WLES sendEstateOwnerMessage(gMessageSystem, "setregionterrain", invoice, strings); strings.clear(); @@ -1400,7 +1400,7 @@ void LLPanelRegionTerrainInfo::onApplyCurrentWL(void* userData) // Immediately apply current environment settings to region. LLEnvManager::instance().applyLocalSettingsToRegion(); } -#endif TMP_DISABLE_WLES +#endif // TMP_DISABLE_WLES ///////////////////////////////////////////////////////////////////////////// // LLPanelEstateInfo @@ -1451,7 +1451,7 @@ void LLPanelEstateInfo::onChangeFixedSun() getChild<LLUICtrl>("use_global_time_check")->setValue(LLSD(FALSE)); enableButton("apply_btn"); } -#endif TMP_DISABLE_WLES +#endif // TMP_DISABLE_WLES |