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:
authorCampbell Barton <ideasman42@gmail.com>2020-10-10 10:19:55 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-10-10 14:04:51 +0300
commit2abfcebb0eb7989e3d1e7d03f37ecf5c088210af (patch)
treee7a1ad5912b4661d4ece743f4f7fd86e6bf4d3c4 /source/blender/editors/space_script
parentc735aca42e9f5961fec7e5d5fc196b5bd6b85f56 (diff)
Cleanup: use C comments for descriptive text
Follow our code style guide by using C-comments for text descriptions.
Diffstat (limited to 'source/blender/editors/space_script')
-rw-r--r--source/blender/editors/space_script/script_edit.c2
-rw-r--r--source/blender/editors/space_script/space_script.c12
2 files changed, 7 insertions, 7 deletions
diff --git a/source/blender/editors/space_script/script_edit.c b/source/blender/editors/space_script/script_edit.c
index 56f99d31cf1..bde7bdb77f1 100644
--- a/source/blender/editors/space_script/script_edit.c
+++ b/source/blender/editors/space_script/script_edit.c
@@ -39,7 +39,7 @@
#include "ED_screen.h"
-#include "script_intern.h" // own include
+#include "script_intern.h" /* own include */
#ifdef WITH_PYTHON
# include "BPY_extern_run.h"
diff --git a/source/blender/editors/space_script/space_script.c b/source/blender/editors/space_script/space_script.c
index 3c3f7dc1e8e..3330ba14530 100644
--- a/source/blender/editors/space_script/space_script.c
+++ b/source/blender/editors/space_script/space_script.c
@@ -45,7 +45,7 @@
#endif
#include "GPU_framebuffer.h"
-#include "script_intern.h" // own include
+#include "script_intern.h" /* own include */
// static script_run_python(char *funcname, )
@@ -85,8 +85,6 @@ static void script_free(SpaceLink *sl)
#ifdef WITH_PYTHON
/*free buttons references*/
if (sscript->but_refs) {
- // XXX BPy_Set_DrawButtonsList(sscript->but_refs);
- // BPy_Free_DrawButtonsList();
sscript->but_refs = NULL;
}
#endif
@@ -164,9 +162,11 @@ static void script_main_region_listener(wmWindow *UNUSED(win),
wmNotifier *UNUSED(wmn),
const Scene *UNUSED(scene))
{
- /* context changes */
- // XXX - Todo, need the ScriptSpace accessible to get the python script to run.
- // BPY_run_script_space_listener()
+/* context changes */
+/* XXX - Todo, need the ScriptSpace accessible to get the python script to run. */
+#if 0
+ BPY_run_script_space_listener()
+#endif
}
/* only called once, from space/spacetypes.c */