diff options
-rw-r--r-- | message_notify/MessageNotify.mdsp | 13 | ||||
-rw-r--r-- | message_notify/messagenotify.cpp | 8 | ||||
-rw-r--r-- | message_notify/options.cpp | 1 |
3 files changed, 9 insertions, 13 deletions
diff --git a/message_notify/MessageNotify.mdsp b/message_notify/MessageNotify.mdsp index a82cdbc..8d24e85 100644 --- a/message_notify/MessageNotify.mdsp +++ b/message_notify/MessageNotify.mdsp @@ -96,10 +96,11 @@ extraResourceOptions= [Other]
1=..\..\include\m_database.h
[History]
-messagenotify.cpp,10226
-popups.cpp,6329
-mywindowlist.cpp,0
-options.cpp,5087
-common.h,641
+collection.h,5114
..\..\include\m_database.h,16840
-collection.h,5128
+common.h,641
+options.cpp,0
+mywindowlist.cpp,0
+popups.cpp,6329
+messagenotify.cpp,662
+m_speak.h,6298
diff --git a/message_notify/messagenotify.cpp b/message_notify/messagenotify.cpp index fa29b07..c6b4b94 100644 --- a/message_notify/messagenotify.cpp +++ b/message_notify/messagenotify.cpp @@ -29,7 +29,7 @@ DWORD focusTimerId = 0; PLUGININFOEX pluginInfo={
sizeof(PLUGININFOEX),
"Message Notify",
- PLUGIN_MAKE_VERSION(0, 4, 0, 0),
+ PLUGIN_MAKE_VERSION(0, 4, 0, 1),
"Show a popup when a message is received",
"Scott Ellis",
"mail@scottellis.com.au",
@@ -48,12 +48,6 @@ extern "C" BOOL WINAPI DllMain(HINSTANCE hinstDLL,DWORD fdwReason,LPVOID lpvRese return TRUE;
}
-extern "C" __declspec(dllexport) PLUGININFO* MirandaPluginInfo(DWORD mirandaVersion)
-{
- pluginInfo.cbSize = sizeof(PLUGININFO);
- return (PLUGININFO*)&pluginInfo;
-}
-
extern "C" __declspec(dllexport) PLUGININFOEX* MirandaPluginInfoEx(DWORD mirandaVersion)
{
return &pluginInfo;
diff --git a/message_notify/options.cpp b/message_notify/options.cpp index e5ea989..3e0e75d 100644 --- a/message_notify/options.cpp +++ b/message_notify/options.cpp @@ -111,6 +111,7 @@ BOOL CALLBACK DlgProcOpts(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam) case IDC_CHK_MSG:
case IDC_CHK_CLOSE:
case IDC_CHK_TABS:
+ case IDC_CHK_SPEECH:
SendMessage( GetParent( hwndDlg ), PSM_CHANGED, 0, 0 );
return TRUE;
case IDC_CHK_POPUPS:
|