summaryrefslogtreecommitdiffstats
path: root/Examples/WhisperDesktop/WhisperDesktop.cpp
diff options
context:
space:
mode:
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();