diff options
| author | Konstantin <const@const.me> | 2023-02-03 19:01:04 +0100 |
|---|---|---|
| committer | Konstantin <const@const.me> | 2023-02-03 19:01:04 +0100 |
| commit | 3f3a9a156736d4da0339b3c2d9b042f4ed7c7fb2 (patch) | |
| tree | c3a4ba4291cb9fd6fae27d1e86c5ec26578aa6a2 /Examples/WhisperDesktop/CaptureDlg.cpp | |
| parent | 3ba8e6389679007445f4fc1c52439cb0df3ddba0 (diff) | |
Refactor, removed a redundant function
Diffstat (limited to 'Examples/WhisperDesktop/CaptureDlg.cpp')
| -rw-r--r-- | Examples/WhisperDesktop/CaptureDlg.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Examples/WhisperDesktop/CaptureDlg.cpp b/Examples/WhisperDesktop/CaptureDlg.cpp index 0bd86f7..95dfe3c 100644 --- a/Examples/WhisperDesktop/CaptureDlg.cpp +++ b/Examples/WhisperDesktop/CaptureDlg.cpp @@ -486,9 +486,9 @@ HRESULT CaptureDlg::appendTextFile( Whisper::iTranscribeResult* results, uint32_ if( 0 != ( (uint32_t)threadState.flags & (uint32_t)eTextFlags::Timestamps ) ) { str = "["; - printTimeStamp( str, seg.time.begin ); + printTime( str, seg.time.begin ); str += " --> "; - printTimeStamp( str, seg.time.end ); + printTime( str, seg.time.end ); str += "] "; } else |
