diff options
author | Jacek Antonelli | 2009-05-24 02:59:24 -0500 |
---|---|---|
committer | Jacek Antonelli | 2009-05-24 02:59:40 -0500 |
commit | b2627d927f1642bea84b92adfccd9403676e1341 (patch) | |
tree | 07f069e63cfa633b9bd0d07b4eecc229ef67f974 /linden/indra/newview/llviewertexteditor.h | |
parent | Second Life viewer sources 1.23.1-RC (diff) | |
download | meta-impy-b2627d927f1642bea84b92adfccd9403676e1341.zip meta-impy-b2627d927f1642bea84b92adfccd9403676e1341.tar.gz meta-impy-b2627d927f1642bea84b92adfccd9403676e1341.tar.bz2 meta-impy-b2627d927f1642bea84b92adfccd9403676e1341.tar.xz |
Second Life viewer sources 1.23.2-RC
Diffstat (limited to 'linden/indra/newview/llviewertexteditor.h')
-rw-r--r-- | linden/indra/newview/llviewertexteditor.h | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/linden/indra/newview/llviewertexteditor.h b/linden/indra/newview/llviewertexteditor.h index 0aa9164..ae672d8 100644 --- a/linden/indra/newview/llviewertexteditor.h +++ b/linden/indra/newview/llviewertexteditor.h | |||
@@ -103,21 +103,22 @@ private: | |||
103 | 103 | ||
104 | BOOL getEmbeddedItemToolTipAtPos(S32 pos, LLWString &wmsg) const; | 104 | BOOL getEmbeddedItemToolTipAtPos(S32 pos, LLWString &wmsg) const; |
105 | BOOL openEmbeddedItemAtPos( S32 pos ); | 105 | BOOL openEmbeddedItemAtPos( S32 pos ); |
106 | BOOL openEmbeddedItem(LLInventoryItem* item); | 106 | BOOL openEmbeddedItem(LLInventoryItem* item, llwchar wc); |
107 | 107 | ||
108 | S32 insertEmbeddedItem(S32 pos, LLInventoryItem* item); | 108 | S32 insertEmbeddedItem(S32 pos, LLInventoryItem* item); |
109 | 109 | ||
110 | void openEmbeddedTexture( LLInventoryItem* item ); | 110 | void openEmbeddedTexture( LLInventoryItem* item, llwchar wc ); |
111 | void openEmbeddedSound( LLInventoryItem* item ); | 111 | void openEmbeddedSound( LLInventoryItem* item, llwchar wc ); |
112 | void openEmbeddedLandmark( LLInventoryItem* item ); | 112 | void openEmbeddedLandmark( LLInventoryItem* item, llwchar wc ); |
113 | void openEmbeddedNotecard( LLInventoryItem* item); | 113 | void openEmbeddedNotecard( LLInventoryItem* item, llwchar wc); |
114 | void showCopyToInvDialog( LLInventoryItem* item ); | 114 | void showCopyToInvDialog( LLInventoryItem* item, llwchar wc ); |
115 | void showUnsavedAlertDialog( LLInventoryItem* item ); | 115 | void showUnsavedAlertDialog( LLInventoryItem* item ); |
116 | 116 | ||
117 | bool onCopyToInvDialog(const LLSD& notification, const LLSD& response ); | 117 | bool onCopyToInvDialog(const LLSD& notification, const LLSD& response ); |
118 | static bool onNotecardDialog(const LLSD& notification, const LLSD& response ); | 118 | static bool onNotecardDialog(const LLSD& notification, const LLSD& response ); |
119 | 119 | ||
120 | LLPointer<LLInventoryItem> mDragItem; | 120 | LLPointer<LLInventoryItem> mDragItem; |
121 | llwchar mDragItemChar; | ||
121 | BOOL mDragItemSaved; | 122 | BOOL mDragItemSaved; |
122 | class LLEmbeddedItems* mEmbeddedItemList; | 123 | class LLEmbeddedItems* mEmbeddedItemList; |
123 | 124 | ||