diff options
author | Merov Linden <merov@lindenlab.com> | 2012-02-07 17:13:24 -0800 |
---|---|---|
committer | Merov Linden <merov@lindenlab.com> | 2012-02-07 17:13:24 -0800 |
commit | c744603af9b53c6bc73fefbd56de68cf2778ed70 (patch) | |
tree | 353cea8bbf89f69bd644b6d0b3fd2fa4c66acf8b /indra/llui/llclipboard.h | |
parent | 9761375ac244af36635899c73e99efc46b68b589 (diff) |
EXP-1873 : Implement cut in the inventory contextual menu. Works without deleting the items but simply dimming them and moving them. Doesn't work for folders yet.
Diffstat (limited to 'indra/llui/llclipboard.h')
-rw-r--r-- | indra/llui/llclipboard.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/indra/llui/llclipboard.h b/indra/llui/llclipboard.h index bb2d003703..8e417a490d 100644 --- a/indra/llui/llclipboard.h +++ b/indra/llui/llclipboard.h @@ -69,6 +69,8 @@ public: BOOL hasContents() const; // true if the clipboard has something pasteable in it bool isCutMode() const { return mCutMode; } + void setCutMode(bool mode) { mCutMode = mode; } + bool isOnClipboard(const LLUUID& object) const; private: LLDynamicArray<LLUUID> mObjects; |