diff options
Diffstat (limited to '')
-rw-r--r-- | linden/indra/llui/llclipboard.h | 18 |
1 files changed, 7 insertions, 11 deletions
diff --git a/linden/indra/llui/llclipboard.h b/linden/indra/llui/llclipboard.h index 82ea334..2ebc2de 100644 --- a/linden/indra/llui/llclipboard.h +++ b/linden/indra/llui/llclipboard.h | |||
@@ -36,24 +36,20 @@ | |||
36 | #include "llstring.h" | 36 | #include "llstring.h" |
37 | #include "lluuid.h" | 37 | #include "lluuid.h" |
38 | 38 | ||
39 | // | 39 | |
40 | // Classes | ||
41 | // | ||
42 | class LLClipboard | 40 | class LLClipboard |
43 | { | 41 | { |
44 | protected: | ||
45 | LLUUID mSourceID; | ||
46 | LLWString mString; | ||
47 | |||
48 | public: | 42 | public: |
49 | LLClipboard(); | 43 | LLClipboard(); |
50 | ~LLClipboard(); | 44 | ~LLClipboard(); |
51 | 45 | ||
52 | void copyFromSubstring(const LLWString ©_from, S32 pos, S32 len, const LLUUID& source_id = LLUUID::null ); | 46 | void copyFromSubstring(const LLWString ©_from, S32 pos, S32 len, const LLUUID& source_id = LLUUID::null ); |
53 | 47 | BOOL canPasteString() const; | |
54 | 48 | const LLWString& getPasteWString(LLUUID* source_id = NULL); | |
55 | BOOL canPasteString(); | 49 | |
56 | LLWString getPasteWString(LLUUID* source_id = NULL); | 50 | private: |
51 | LLUUID mSourceID; | ||
52 | LLWString mString; | ||
57 | }; | 53 | }; |
58 | 54 | ||
59 | 55 | ||