diff options
author | Jacek Antonelli | 2009-11-26 20:14:35 -0600 |
---|---|---|
committer | Jacek Antonelli | 2009-11-26 20:15:14 -0600 |
commit | 090099a14ee243ec11e4d6a1804e2eaa936af2a0 (patch) | |
tree | 8926301607c23c1a6f058dd765f49d94b8f703a1 /linden/indra/newview/primbackup.h | |
parent | Updated Windows libpng url (diff) | |
download | meta-impy-090099a14ee243ec11e4d6a1804e2eaa936af2a0.zip meta-impy-090099a14ee243ec11e4d6a1804e2eaa936af2a0.tar.gz meta-impy-090099a14ee243ec11e4d6a1804e2eaa936af2a0.tar.bz2 meta-impy-090099a14ee243ec11e4d6a1804e2eaa936af2a0.tar.xz |
Reverted "Updated primbackup from latest meerkat svn (r246)"
This reverts commit 8af226efd89b2f2190555ce578d4e7f1cde99f32.
Diffstat (limited to 'linden/indra/newview/primbackup.h')
-rw-r--r-- | linden/indra/newview/primbackup.h | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/linden/indra/newview/primbackup.h b/linden/indra/newview/primbackup.h index 7db26ec..cbd757a 100644 --- a/linden/indra/newview/primbackup.h +++ b/linden/indra/newview/primbackup.h | |||
@@ -3,7 +3,7 @@ | |||
3 | 3 | ||
4 | #define LL_GRID_PERMISSIONS 1 | 4 | #define LL_GRID_PERMISSIONS 1 |
5 | 5 | ||
6 | //enum export_states {EXPORT_INIT,EXPORT_STRUCTURE,EXPORT_TEXTURES,EXPORT_LLSD,EXPORT_DONE}; | 6 | enum export_states {EXPORT_INIT,EXPORT_STRUCTURE,EXPORT_TEXTURES,EXPORT_LLSD,EXPORT_DONE}; |
7 | 7 | ||
8 | class primbackup : public LLFloater | 8 | class primbackup : public LLFloater |
9 | 9 | ||
@@ -13,7 +13,7 @@ class primbackup : public LLFloater | |||
13 | enum export_states export_state; | 13 | enum export_states export_state; |
14 | 14 | ||
15 | //Export idle callback | 15 | //Export idle callback |
16 | //static void exportworker(void *userdata); | 16 | static void exportworker(void *userdata); |
17 | 17 | ||
18 | //Static accessor | 18 | //Static accessor |
19 | static primbackup* getInstance(); | 19 | static primbackup* getInstance(); |
@@ -79,8 +79,6 @@ private: | |||
79 | void updateimportnumbers(); | 79 | void updateimportnumbers(); |
80 | void updateexportnumbers(); | 80 | void updateexportnumbers(); |
81 | 81 | ||
82 | //Convert a selection list of objects to HPA | ||
83 | LLXMLNode *prims_to_xml(LLViewerObject::child_list_t child_list); | ||
84 | //Convert a selection list of objects to LLSD | 82 | //Convert a selection list of objects to LLSD |
85 | LLSD prims_to_llsd(LLViewerObject::child_list_t child_list); | 83 | LLSD prims_to_llsd(LLViewerObject::child_list_t child_list); |
86 | 84 | ||
@@ -119,8 +117,6 @@ private: | |||
119 | LLSD this_group; | 117 | LLSD this_group; |
120 | LLUUID expecting_update; | 118 | LLUUID expecting_update; |
121 | 119 | ||
122 | LLXMLNodePtr xml; | ||
123 | |||
124 | //working llsd itterators for objects and linksets | 120 | //working llsd itterators for objects and linksets |
125 | LLSD::map_const_iterator prim_import_iter; | 121 | LLSD::map_const_iterator prim_import_iter; |
126 | LLSD::array_const_iterator group_prim_import_iter; | 122 | LLSD::array_const_iterator group_prim_import_iter; |
@@ -135,3 +131,4 @@ private: | |||
135 | LLQuaternion agent_rot; | 131 | LLQuaternion agent_rot; |
136 | 132 | ||
137 | }; | 133 | }; |
134 | |||