Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDalai Felinto <dfelinto@gmail.com>2017-02-16 12:54:09 +0300
committerDalai Felinto <dfelinto@gmail.com>2017-02-16 16:39:56 +0300
commit011c8c730fb3efc9e00855911d4df5deb3f0c0f5 (patch)
tree580e3617113cc99e8741af341c5755b72c2f8e81 /source/blender/editors/space_outliner/outliner_intern.h
parent3d63b9a88f969f2766cb37c8d3c937e1054a8154 (diff)
Outliner collection operators, all but collection link
Note: It may be missing a notifier to prevent Outliner from crashing when deleting collections.
Diffstat (limited to 'source/blender/editors/space_outliner/outliner_intern.h')
-rw-r--r--source/blender/editors/space_outliner/outliner_intern.h21
1 files changed, 10 insertions, 11 deletions
diff --git a/source/blender/editors/space_outliner/outliner_intern.h b/source/blender/editors/space_outliner/outliner_intern.h
index aa3bcaaabe6..f521b8f4414 100644
--- a/source/blender/editors/space_outliner/outliner_intern.h
+++ b/source/blender/editors/space_outliner/outliner_intern.h
@@ -276,17 +276,16 @@ void outliner_keymap(struct wmKeyConfig *keyconf);
/* outliner_collections.c */
-void OUTLINER_OT_collections_delete(struct wmOperatorType *ot);
-void OUTLINER_OT_collections_select(struct wmOperatorType *ot);
-void OUTLINER_OT_collections_rename(struct wmOperatorType *ot);
-void OUTLINER_OT_collections_link(struct wmOperatorType *ot);
-void OUTLINER_OT_collections_unlink(struct wmOperatorType *ot);
-void OUTLINER_OT_collections_new(struct wmOperatorType *ot);
-void OUTLINER_OT_collections_override_new(struct wmOperatorType *ot);
-void OUTLINER_OT_collections_objects_add(struct wmOperatorType *ot);
-void OUTLINER_OT_collections_objects_remove(struct wmOperatorType *ot);
-void OUTLINER_OT_collections_objects_select(struct wmOperatorType *ot);
-void OUTLINER_OT_collections_objects_deselect(struct wmOperatorType *ot);
+void OUTLINER_OT_collection_delete(struct wmOperatorType *ot);
+void OUTLINER_OT_collection_select(struct wmOperatorType *ot);
+void OUTLINER_OT_collection_link(struct wmOperatorType *ot);
+void OUTLINER_OT_collection_unlink(struct wmOperatorType *ot);
+void OUTLINER_OT_collection_new(struct wmOperatorType *ot);
+void OUTLINER_OT_collection_override_new(struct wmOperatorType *ot);
+void OUTLINER_OT_collection_objects_add(struct wmOperatorType *ot);
+void OUTLINER_OT_collection_objects_remove(struct wmOperatorType *ot);
+void OUTLINER_OT_collection_objects_select(struct wmOperatorType *ot);
+void OUTLINER_OT_collection_objects_deselect(struct wmOperatorType *ot);
#endif /* __OUTLINER_INTERN_H__ */