diff options
| author | Pietro Gagliardi <[email protected]> | 2015-01-04 01:26:48 -0500 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2015-01-04 01:26:48 -0500 |
| commit | 9a27b8a90e607efe906f436ee764764183af5140 (patch) | |
| tree | c1adad1775098c38a23976f2cf86f9d594be9e34 | |
| parent | 085fc00f8131e2adaae601f5ffbdf2728edeb06a (diff) | |
Fixed get_accName().
| -rw-r--r-- | wintable/new/accessibility.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wintable/new/accessibility.h b/wintable/new/accessibility.h index 1968666..71e88e2 100644 --- a/wintable/new/accessibility.h +++ b/wintable/new/accessibility.h @@ -112,7 +112,7 @@ printf("invalid arg\n"); ; // TODO standard accessible object // TODO actually get the real name printf("returning name\n"); - *pszName = SysAllocString("This is a test of the accessibility interface."); + *pszName = SysAllocString(L"This is a test of the accessibility interface."); // TODO check null pointer return S_OK; } |
