diff options
Diffstat (limited to 'linden/indra')
-rw-r--r-- | linden/indra/newview/floaterbusy.h | 2 | ||||
-rw-r--r-- | linden/indra/newview/llfloaterbuildoptions.cpp | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/linden/indra/newview/floaterbusy.h b/linden/indra/newview/floaterbusy.h index 821d00d..c3d149f 100644 --- a/linden/indra/newview/floaterbusy.h +++ b/linden/indra/newview/floaterbusy.h | |||
@@ -85,4 +85,4 @@ private: | |||
85 | static void IMAutoResponseItemDrop(LLViewerInventoryItem* item); | 85 | static void IMAutoResponseItemDrop(LLViewerInventoryItem* item); |
86 | }; | 86 | }; |
87 | 87 | ||
88 | #endif FLOATERBUSY_H | 88 | #endif // FLOATERBUSY_H |
diff --git a/linden/indra/newview/llfloaterbuildoptions.cpp b/linden/indra/newview/llfloaterbuildoptions.cpp index 6cbb9fe..ad15615 100644 --- a/linden/indra/newview/llfloaterbuildoptions.cpp +++ b/linden/indra/newview/llfloaterbuildoptions.cpp | |||
@@ -326,10 +326,10 @@ void LLFloaterBuildOptions::reset() | |||
326 | childSetValue("X size", gSavedPerAccountSettings.getControl("BuildPrefs_Xsize")->getDefault() ); | 326 | childSetValue("X size", gSavedPerAccountSettings.getControl("BuildPrefs_Xsize")->getDefault() ); |
327 | 327 | ||
328 | getChild<LLColorSwatchCtrl>("colorswatch")->set(gSavedPerAccountSettings.getControl("BuildPrefs_Color")->getDefault(), TRUE); | 328 | getChild<LLColorSwatchCtrl>("colorswatch")->set(gSavedPerAccountSettings.getControl("BuildPrefs_Color")->getDefault(), TRUE); |
329 | getChild<LLTextureCtrl>("texture control")->setImageAssetID(LLUUID(gSavedPerAccountSettings.getControl("BuildPrefs_Texture")->getDefault()) ); | 329 | getChild<LLTextureCtrl>("texture control")->setImageAssetID( (LLUUID)gSavedPerAccountSettings.getControl("BuildPrefs_Texture")->getDefault().asString() ); |
330 | 330 | ||
331 | mBuildItemUUID = (LLUUID)gSavedPerAccountSettings.getControl("BuildPrefs_Item")->getDefault(); | 331 | mBuildItemUUID = (LLUUID)gSavedPerAccountSettings.getControl("BuildPrefs_Item")->getDefault().asString(); |
332 | mBuildTextureUUID = (LLUUID)gSavedPerAccountSettings.getControl("BuildPrefs_Texture")->getDefault(); | 332 | mBuildTextureUUID = (LLUUID)gSavedPerAccountSettings.getControl("BuildPrefs_Texture")->getDefault().asString(); |
333 | 333 | ||
334 | childSetValue("BuildPrefsRenderHighlight_toggle", gSavedSettings.getControl("RenderHighlightSelections")->getDefault() ); | 334 | childSetValue("BuildPrefsRenderHighlight_toggle", gSavedSettings.getControl("RenderHighlightSelections")->getDefault() ); |
335 | childSetValue("grouplandrez", gSavedSettings.getControl("RezWithLandGroup")->getDefault() ); | 335 | childSetValue("grouplandrez", gSavedSettings.getControl("RezWithLandGroup")->getDefault() ); |