Commit 30db9fa8 authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

comctl32/propsheet: Use wide string literals.

parent 6dbe2b53
...@@ -139,8 +139,7 @@ typedef struct ...@@ -139,8 +139,7 @@ typedef struct
* Defines and global variables * Defines and global variables
*/ */
static const WCHAR PropSheetInfoStr[] = static const WCHAR PropSheetInfoStr[] = L"PropertySheetInfo";
{'P','r','o','p','e','r','t','y','S','h','e','e','t','I','n','f','o',0 };
#define PSP_INTERNAL_UNICODE 0x80000000 #define PSP_INTERNAL_UNICODE 0x80000000
...@@ -546,7 +545,6 @@ static BOOL PROPSHEET_CollectPageInfo(LPCPROPSHEETPAGEW lppsp, ...@@ -546,7 +545,6 @@ static BOOL PROPSHEET_CollectPageInfo(LPCPROPSHEETPAGEW lppsp,
{ {
WCHAR szTitle[256]; WCHAR szTitle[256];
const WCHAR *pTitle; const WCHAR *pTitle;
static const WCHAR pszNull[] = { '(','n','u','l','l',')',0 };
if (IS_INTRESOURCE( lppsp->pszTitle )) if (IS_INTRESOURCE( lppsp->pszTitle ))
{ {
...@@ -555,7 +553,7 @@ static BOOL PROPSHEET_CollectPageInfo(LPCPROPSHEETPAGEW lppsp, ...@@ -555,7 +553,7 @@ static BOOL PROPSHEET_CollectPageInfo(LPCPROPSHEETPAGEW lppsp,
else if (*p) else if (*p)
pTitle = p; pTitle = p;
else else
pTitle = pszNull; pTitle = L"(null)";
} }
else else
pTitle = lppsp->pszTitle; pTitle = lppsp->pszTitle;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment