From 97e27892c15f6f933b39fbeb1cc212ca7b87ff6a Mon Sep 17 00:00:00 2001 From: sje Date: Mon, 8 Oct 2007 07:36:57 +0000 Subject: fix to options page, password/email does not enable apply button git-svn-id: https://server.scottellis.com.au/svn/mim_plugs@357 4f64403b-2f21-0410-a795-97e2b3489a10 --- MySpace/options.cpp | 2 ++ MySpace/version.h | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/MySpace/options.cpp b/MySpace/options.cpp index d45caca..3352f0a 100644 --- a/MySpace/options.cpp +++ b/MySpace/options.cpp @@ -87,6 +87,8 @@ BOOL CALLBACK DlgProcOpt1(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam) case WM_COMMAND: if ( HIWORD( wParam ) == BN_CLICKED ) SendMessage(GetParent(hwndDlg), PSM_CHANGED, 0, 0); + else if ( HIWORD( wParam ) == EN_CHANGE && ( HWND )lParam == GetFocus()) + SendMessage( GetParent( hwndDlg ), PSM_CHANGED, 0, 0 ); break; case WM_NOTIFY: switch(((LPNMHDR)lParam)->idFrom) { diff --git a/MySpace/version.h b/MySpace/version.h index 2420811..ea0acc5 100644 --- a/MySpace/version.h +++ b/MySpace/version.h @@ -5,7 +5,7 @@ #define __MAJOR_VERSION 0 #define __MINOR_VERSION 0 #define __RELEASE_NUM 5 -#define __BUILD_NUM 17 +#define __BUILD_NUM 18 #define __FILEVERSION_STRING __MAJOR_VERSION,__MINOR_VERSION,__RELEASE_NUM,__BUILD_NUM #define __FILEVERSION_STRING_DOTS __MAJOR_VERSION.__MINOR_VERSION.__RELEASE_NUM.__BUILD_NUM -- cgit v1.2.3