diff options
| author | Konstantin <const@const.me> | 2023-02-03 12:51:08 +0100 |
|---|---|---|
| committer | Konstantin <const@const.me> | 2023-02-03 12:51:08 +0100 |
| commit | 2deddc6e541bc61f72e07f7cc82f91d7e117f619 (patch) | |
| tree | 4c9f8e77fd12625e8fc9a33c6a70a980fe0dfe5c /Examples | |
| parent | 2eb3d154319a78f68176eec7d83326b4b1613bf6 (diff) | |
Comments
Diffstat (limited to 'Examples')
| -rw-r--r-- | Examples/WhisperDesktop/TranscribeDlg.cpp | 2 |
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, |
