oleaut32/tests: Constify some character strings.

This commit is contained in:
Frédéric Delanoy 2013-12-26 22:49:31 +01:00 committed by Alexandre Julliard
parent 8a4e5ec68b
commit dfe6a9b200
2 changed files with 3 additions and 3 deletions

View File

@ -1195,7 +1195,7 @@ static void test_typelibmarshal(void)
{
static const WCHAR szCat[] = { 'C','a','t',0 };
static const WCHAR szTestTest[] = { 'T','e','s','t','T','e','s','t',0 };
static WCHAR szSuperman[] = { 'S','u','p','e','r','m','a','n',0 };
static const WCHAR szSuperman[] = { 'S','u','p','e','r','m','a','n',0 };
HRESULT hr;
IKindaEnumWidget *pKEW = KindaEnumWidget_Create();
IWidget *pWidget;

View File

@ -1529,8 +1529,8 @@ static void test_CreateTypeLib(SYSKIND sys) {
static OLECHAR interface3W[] = {'i','n','t','e','r','f','a','c','e','3',0};
static OLECHAR dualW[] = {'d','u','a','l',0};
static OLECHAR coclassW[] = {'c','o','c','l','a','s','s',0};
static WCHAR defaultW[] = {'d','e','f','a','u','l','t',0x3213,0};
static WCHAR defaultQW[] = {'d','e','f','a','u','l','t','?',0};
static const WCHAR defaultW[] = {'d','e','f','a','u','l','t',0x3213,0};
static const WCHAR defaultQW[] = {'d','e','f','a','u','l','t','?',0};
static OLECHAR func1W[] = {'f','u','n','c','1',0};
static OLECHAR func2W[] = {'f','u','n','c','2',0};
static OLECHAR prop1W[] = {'P','r','o','p','1',0};