aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/llpanelobject.h
diff options
context:
space:
mode:
authorJacek Antonelli2008-09-06 18:24:57 -0500
committerJacek Antonelli2008-09-06 18:25:07 -0500
commit798d367d54a6c6379ad355bd8345fa40e31e7fe9 (patch)
tree1921f1708cd0240648c97bc02df2c2ab5f2fc41e /linden/indra/newview/llpanelobject.h
parentSecond Life viewer sources 1.20.15 (diff)
downloadmeta-impy-798d367d54a6c6379ad355bd8345fa40e31e7fe9.zip
meta-impy-798d367d54a6c6379ad355bd8345fa40e31e7fe9.tar.gz
meta-impy-798d367d54a6c6379ad355bd8345fa40e31e7fe9.tar.bz2
meta-impy-798d367d54a6c6379ad355bd8345fa40e31e7fe9.tar.xz
Second Life viewer sources 1.21.0-RC
Diffstat (limited to '')
-rw-r--r--linden/indra/newview/llpanelobject.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/linden/indra/newview/llpanelobject.h b/linden/indra/newview/llpanelobject.h
index 3e7f0bc..afdfd30 100644
--- a/linden/indra/newview/llpanelobject.h
+++ b/linden/indra/newview/llpanelobject.h
@@ -87,9 +87,9 @@ public:
87protected: 87protected:
88 void getState(); 88 void getState();
89 89
90 void sendRotation(); 90 void sendRotation(BOOL btn_down);
91 void sendScale(); 91 void sendScale(BOOL btn_down);
92 void sendPosition(); 92 void sendPosition(BOOL btn_down);
93 void sendIsPhysical(); 93 void sendIsPhysical();
94 void sendIsTemporary(); 94 void sendIsTemporary();
95 void sendIsPhantom(); 95 void sendIsPhantom();
@@ -170,6 +170,8 @@ protected:
170 LLTextureCtrl *mCtrlSculptTexture; 170 LLTextureCtrl *mCtrlSculptTexture;
171 LLTextBox *mLabelSculptType; 171 LLTextBox *mLabelSculptType;
172 LLComboBox *mCtrlSculptType; 172 LLComboBox *mCtrlSculptType;
173 LLCheckBoxCtrl *mCtrlSculptMirror;
174 LLCheckBoxCtrl *mCtrlSculptInvert;
173 175
174 LLVector3 mCurEulerDegrees; // to avoid sending rotation when not changed 176 LLVector3 mCurEulerDegrees; // to avoid sending rotation when not changed
175 BOOL mIsPhysical; // to avoid sending "physical" when not changed 177 BOOL mIsPhysical; // to avoid sending "physical" when not changed
@@ -180,7 +182,7 @@ protected:
180 182
181 LLUUID mSculptTextureRevert; // so we can revert the sculpt texture on cancel 183 LLUUID mSculptTextureRevert; // so we can revert the sculpt texture on cancel
182 U8 mSculptTypeRevert; // so we can revert the sculpt type on cancel 184 U8 mSculptTypeRevert; // so we can revert the sculpt type on cancel
183 185
184 LLPointer<LLViewerObject> mObject; 186 LLPointer<LLViewerObject> mObject;
185 LLPointer<LLViewerObject> mRootObject; 187 LLPointer<LLViewerObject> mRootObject;
186}; 188};