summaryrefslogtreecommitdiffstats
path: root/Examples/WhisperDesktop/WhisperDesktop.cpp
diff options
context:
space:
mode:
authorKonstantin <const@const.me>2023-01-21 14:40:02 +0100
committerKonstantin <const@const.me>2023-01-21 14:40:02 +0100
commitc4cf795454fa409230c214b97d0b1fcaa04205a0 (patch)
tree0fe938f3900f8e876e12e460e2eeb90ac4a9c636 /Examples/WhisperDesktop/WhisperDesktop.cpp
parent79d6cb500f57cf8d416e399610ed405039b166da (diff)
Minor
Diffstat (limited to 'Examples/WhisperDesktop/WhisperDesktop.cpp')
-rw-r--r--Examples/WhisperDesktop/WhisperDesktop.cpp6
1 files changed, 3 insertions, 3 deletions
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();