diff options
author | sje <sje@4f64403b-2f21-0410-a795-97e2b3489a10> | 2007-10-08 07:36:57 +0000 |
---|---|---|
committer | sje <sje@4f64403b-2f21-0410-a795-97e2b3489a10> | 2007-10-08 07:36:57 +0000 |
commit | 97e27892c15f6f933b39fbeb1cc212ca7b87ff6a (patch) | |
tree | c82db3775fcecaaad96b7e96771dc595ef39a668 | |
parent | 076da248694323210f55a78b71e463432ed439da (diff) |
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
-rw-r--r-- | MySpace/options.cpp | 2 | ||||
-rw-r--r-- | MySpace/version.h | 2 |
2 files changed, 3 insertions, 1 deletions
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
|