diff options
author | George Hazan <george.hazan@gmail.com> | 2023-09-24 14:04:32 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2023-09-24 14:04:32 +0300 |
commit | 2e00d85fc5af3d80918ca62e29abbbb4a7377b9e (patch) | |
tree | b7c659b0e8f6191673b202eeadf216bacebc2ce3 /plugins/SmileyAdd/src/smileys.h | |
parent | 0b4b240c8c0974b8f7b1a830df2d14d3d30cb08a (diff) |
we don't need CMStringW& as the Get* parameter
Diffstat (limited to 'plugins/SmileyAdd/src/smileys.h')
-rw-r--r-- | plugins/SmileyAdd/src/smileys.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/SmileyAdd/src/smileys.h b/plugins/SmileyAdd/src/smileys.h index 334b6236f6..2a4df721dd 100644 --- a/plugins/SmileyAdd/src/smileys.h +++ b/plugins/SmileyAdd/src/smileys.h @@ -283,7 +283,7 @@ class SmileyCategoryListType public:
void SetSmileyPackStore(SmileyPackListType *pSPS) { m_pSmileyPackStore = pSPS; }
- SmileyCategoryType* GetSmileyCategory(const CMStringW &name);
+ SmileyCategoryType* GetSmileyCategory(const wchar_t *pwszName);
SmileyCategoryType* GetSmileyCategory(unsigned index);
SmileyPackType* GetSmileyPack(const CMStringW &name);
SmileyCategoryVectorType& GetSmileyCategoryList(void) { return m_SmileyCategories; }
|