From c4cf795454fa409230c214b97d0b1fcaa04205a0 Mon Sep 17 00:00:00 2001 From: Konstantin Date: Sat, 21 Jan 2023 14:40:02 +0100 Subject: Minor --- Examples/WhisperDesktop/WhisperDesktop.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Examples/WhisperDesktop/WhisperDesktop.cpp') diff --git a/Examples/WhisperDesktop/WhisperDesktop.cpp b/Examples/WhisperDesktop/WhisperDesktop.cpp index ddef5b6..87ee0a4 100644 --- a/Examples/WhisperDesktop/WhisperDesktop.cpp +++ b/Examples/WhisperDesktop/WhisperDesktop.cpp @@ -5,7 +5,7 @@ #include "TranscribeDlg.h" #include "CaptureDlg.h" -HRESULT dialogLoadModel( AppState& appState ) +static HRESULT dialogLoadModel( AppState& appState ) { LoadModelDlg loadDialog{ appState }; HRESULT hr = loadDialog.show(); @@ -18,13 +18,13 @@ HRESULT dialogLoadModel( AppState& appState ) return hr; } -HRESULT dialogTranscribe( AppState& appState ) +static HRESULT dialogTranscribe( AppState& appState ) { TranscribeDlg dialog{ appState }; return dialog.show(); } -HRESULT dialogCapture( AppState& appState ) +static HRESULT dialogCapture( AppState& appState ) { CaptureDlg dialog{ appState }; return dialog.show(); -- cgit v1.2.3