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/sound
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/sound')
-rw-r--r--source/blender/editors/sound/sound_ops.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/source/blender/editors/sound/sound_ops.c b/source/blender/editors/sound/sound_ops.c
index 9d9918a6daf..e5f6b61a2ae 100644
--- a/source/blender/editors/sound/sound_ops.c
+++ b/source/blender/editors/sound/sound_ops.c
@@ -126,7 +126,7 @@ static int sound_open_exec(bContext *C, wmOperator *op)
return OPERATOR_FINISHED;
}
-#else // WITH_AUDASPACE
+#else /* WITH_AUDASPACE */
static int sound_open_exec(bContext *UNUSED(C), wmOperator *op)
{
@@ -410,10 +410,10 @@ static int sound_mixdown_exec(bContext *C, wmOperator *op)
BKE_report(op->reports, RPT_ERROR, result);
return OPERATOR_CANCELLED;
}
-#else // WITH_AUDASPACE
+#else /* WITH_AUDASPACE */
(void)C;
(void)op;
-#endif // WITH_AUDASPACE
+#endif /* WITH_AUDASPACE */
return OPERATOR_FINISHED;
}
@@ -493,7 +493,7 @@ static bool sound_mixdown_check(bContext *UNUSED(C), wmOperator *op)
return false;
}
-#endif // WITH_AUDASPACE
+#endif /* WITH_AUDASPACE */
static int sound_mixdown_invoke(bContext *C, wmOperator *op, const wmEvent *event)
{
@@ -666,7 +666,7 @@ static void sound_mixdown_draw(bContext *C, wmOperator *op)
uiDefAutoButsRNA(
layout, &ptr, sound_mixdown_draw_check_prop, NULL, NULL, UI_BUT_LABEL_ALIGN_NONE, false);
}
-#endif // WITH_AUDASPACE
+#endif /* WITH_AUDASPACE */
static void SOUND_OT_mixdown(wmOperatorType *ot)
{
@@ -696,7 +696,7 @@ static void SOUND_OT_mixdown(wmOperatorType *ot)
{0, NULL, 0, NULL, NULL},
};
-#endif // WITH_AUDASPACE
+#endif /* WITH_AUDASPACE */
/* identifiers */
ot->name = "Mixdown";
@@ -743,7 +743,7 @@ static void SOUND_OT_mixdown(wmOperatorType *ot)
0,
"Split channels",
"Each channel will be rendered into a mono file");
-#endif // WITH_AUDASPACE
+#endif /* WITH_AUDASPACE */
}
/* ******************************************************* */