summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKonstantin <const@const.me>2023-02-03 12:51:08 +0100
committerKonstantin <const@const.me>2023-02-03 12:51:08 +0100
commit2deddc6e541bc61f72e07f7cc82f91d7e117f619 (patch)
tree4c9f8e77fd12625e8fc9a33c6a70a980fe0dfe5c
parent2eb3d154319a78f68176eec7d83326b4b1613bf6 (diff)
Comments
-rw-r--r--Examples/WhisperDesktop/TranscribeDlg.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/Examples/WhisperDesktop/TranscribeDlg.cpp b/Examples/WhisperDesktop/TranscribeDlg.cpp
index 742c1d4..19772e2 100644
--- a/Examples/WhisperDesktop/TranscribeDlg.cpp
+++ b/Examples/WhisperDesktop/TranscribeDlg.cpp
@@ -105,6 +105,7 @@ void TranscribeDlg::printModelDescription()
modelDesc.SetWindowText( text );
}
+// Populate the "Output Format" combobox
void TranscribeDlg::populateOutputFormats()
{
transcribeOutFormat.AddString( L"None" );
@@ -114,6 +115,7 @@ void TranscribeDlg::populateOutputFormats()
transcribeOutFormat.AddString( L"WebVTT subtitles" );
}
+// The enum values should match 0-based indices of the combobox items
enum struct TranscribeDlg::eOutputFormat : uint8_t
{
None = 0,