diff options
author | Jacek Antonelli | 2008-09-06 18:24:57 -0500 |
---|---|---|
committer | Jacek Antonelli | 2008-09-06 18:25:07 -0500 |
commit | 798d367d54a6c6379ad355bd8345fa40e31e7fe9 (patch) | |
tree | 1921f1708cd0240648c97bc02df2c2ab5f2fc41e /linden/indra/newview/llviewermenu.h | |
parent | Second Life viewer sources 1.20.15 (diff) | |
download | meta-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/llviewermenu.h | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/linden/indra/newview/llviewermenu.h b/linden/indra/newview/llviewermenu.h index 384c1cc..e003e90 100644 --- a/linden/indra/newview/llviewermenu.h +++ b/linden/indra/newview/llviewermenu.h | |||
@@ -50,7 +50,7 @@ void cleanup_menus(); | |||
50 | void show_debug_menus(); // checks for if menus should be shown first. | 50 | void show_debug_menus(); // checks for if menus should be shown first. |
51 | void show_context_menu( S32 x, S32 y, MASK mask ); | 51 | void show_context_menu( S32 x, S32 y, MASK mask ); |
52 | void show_build_mode_context_menu(S32 x, S32 y, MASK mask); | 52 | void show_build_mode_context_menu(S32 x, S32 y, MASK mask); |
53 | void load_url_local_file(const char *file_name); | 53 | void load_url_local_file(const std::string& file_name); |
54 | BOOL enable_save_into_inventory(void*); | 54 | BOOL enable_save_into_inventory(void*); |
55 | void handle_reset_view(); | 55 | void handle_reset_view(); |
56 | void handle_cut(void*); | 56 | void handle_cut(void*); |
@@ -83,8 +83,8 @@ void menu_toggle_control( void* user_data ); | |||
83 | void check_toggle_control( LLUICtrl *, void* user_data ); | 83 | void check_toggle_control( LLUICtrl *, void* user_data ); |
84 | void confirm_replace_attachment(S32 option, void* user_data); | 84 | void confirm_replace_attachment(S32 option, void* user_data); |
85 | void handle_detach_from_avatar(void* user_data); | 85 | void handle_detach_from_avatar(void* user_data); |
86 | void attach_label(LLString& label, void* user_data); | 86 | void attach_label(std::string& label, void* user_data); |
87 | void detach_label(LLString& label, void* user_data); | 87 | void detach_label(std::string& label, void* user_data); |
88 | BOOL object_selected_and_point_valid(void* user_data); | 88 | BOOL object_selected_and_point_valid(void* user_data); |
89 | BOOL object_attached(void* user_data); | 89 | BOOL object_attached(void* user_data); |
90 | void handle_detach(void*); | 90 | void handle_detach(void*); |
@@ -112,9 +112,6 @@ bool handle_go_to(); | |||
112 | // Export to XML or Collada | 112 | // Export to XML or Collada |
113 | void handle_export_selected( void * ); | 113 | void handle_export_selected( void * ); |
114 | 114 | ||
115 | //Retrieve a list of valid extensions for a given file "type" | ||
116 | const char* build_extensions_string(LLFilePicker::ELoadFilter filter); | ||
117 | |||
118 | // Pass in an empty string and this function will build a string that | 115 | // Pass in an empty string and this function will build a string that |
119 | // describes buyer permissions. | 116 | // describes buyer permissions. |
120 | class LLSaleInfo; | 117 | class LLSaleInfo; |
@@ -137,7 +134,7 @@ protected: | |||
137 | LLSafeHandle<LLObjectSelection> mObjectSelection; | 134 | LLSafeHandle<LLObjectSelection> mObjectSelection; |
138 | }; | 135 | }; |
139 | 136 | ||
140 | extern const LLString SAVE_INTO_INVENTORY; | 137 | extern const std::string SAVE_INTO_INVENTORY; |
141 | 138 | ||
142 | extern LLMenuBarGL* gMenuBarView; | 139 | extern LLMenuBarGL* gMenuBarView; |
143 | //extern LLView* gMenuBarHolder; | 140 | //extern LLView* gMenuBarHolder; |