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:
Diffstat (limited to 'source/blender/editors/sound/sound_ops.c')
-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 */
}
/* ******************************************************* */