diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2014-07-10 07:09:21 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2014-07-10 07:09:21 +0000 |
commit | 3294c27d2faa6665e3cac132b17514ead8a67bdf (patch) | |
tree | 5d70ed11eeb08ca4b375f33236402b5d45b61238 /plugins | |
parent | 5fa0373e4269178d6c53e43b9e2fe7cf6157cfb7 (diff) |
don't create empty dialog
git-svn-id: http://svn.miranda-ng.org/main/trunk@9754 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/WinterSpeak/src/SpeechApi51Lexicon.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/WinterSpeak/src/SpeechApi51Lexicon.cpp b/plugins/WinterSpeak/src/SpeechApi51Lexicon.cpp index 2a64b0fb6a..db55c2bb09 100644 --- a/plugins/WinterSpeak/src/SpeechApi51Lexicon.cpp +++ b/plugins/WinterSpeak/src/SpeechApi51Lexicon.cpp @@ -18,7 +18,7 @@ SpeechApi51Lexicon::~SpeechApi51Lexicon() //------------------------------------------------------------------------------
bool SpeechApi51Lexicon::display()
{
- m_window = CreateDialog(
+/* m_window = CreateDialog(
g_hInst,
MAKEINTRESOURCE(IDD_TTS_LEXICON),
m_parent_window,
@@ -31,7 +31,7 @@ bool SpeechApi51Lexicon::display() ShowWindow(m_window, SW_SHOW);
-/* WNDCLASS wc;
+ WNDCLASS wc;
wc.style = 0;
! wc.lpfnWndProc = (WNDPROC)MainWndProc; // Window procedure for this class.
|