diff options
Diffstat (limited to 'plugins/Variables/src/parse_system.cpp')
-rw-r--r-- | plugins/Variables/src/parse_system.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Variables/src/parse_system.cpp b/plugins/Variables/src/parse_system.cpp index c6d1fdb765..6c18b39846 100644 --- a/plugins/Variables/src/parse_system.cpp +++ b/plugins/Variables/src/parse_system.cpp @@ -347,7 +347,7 @@ static TCHAR *parseFindWindow(ARGUMENTSINFO *ai) if (hWin == NULL)
return NULL;
- int len = SendMessage(hWin, WM_GETTEXTLENGTH, 0, 0);
+ int len = GetWindowTextLength(hWin);
if (len == 0)
return NULL;
|