diff options
author | sje <sje@4f64403b-2f21-0410-a795-97e2b3489a10> | 2007-07-11 04:07:55 +0000 |
---|---|---|
committer | sje <sje@4f64403b-2f21-0410-a795-97e2b3489a10> | 2007-07-11 04:07:55 +0000 |
commit | 1b5156845a93913b3e125b0cf06e77f915f3d88f (patch) | |
tree | f5683a2a0301be6e941b74c21cd1aadf467774fc /yapp/docs | |
parent | 5defa31f80b79a977dbdf1c9c95874106d8491ac (diff) |
git-svn-id: https://server.scottellis.com.au/svn/mim_plugs@275 4f64403b-2f21-0410-a795-97e2b3489a10
Diffstat (limited to 'yapp/docs')
-rw-r--r-- | yapp/docs/m_popup.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/yapp/docs/m_popup.h b/yapp/docs/m_popup.h index 8a38ff6..90a48e9 100644 --- a/yapp/docs/m_popup.h +++ b/yapp/docs/m_popup.h @@ -384,14 +384,14 @@ typedef struct { int cbSize;
char *pszClassName;
union {
- char *pszTitle;
- wchar_t *pwszTitle;
- TCHAR *ptszTitle;
+ const char *pszTitle;
+ const wchar_t *pwszTitle;
+ const TCHAR *ptszTitle;
};
union {
- char *pszText;
- wchar_t *pwszText;
- TCHAR *ptszText;
+ const char *pszText;
+ const wchar_t *pwszText;
+ const TCHAR *ptszText;
};
void *PluginData;
} POPUPDATACLASS;
|