diff options
author | George Hazan <george.hazan@gmail.com> | 2015-05-28 15:43:44 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-05-28 15:43:44 +0000 |
commit | 7666c2ce26dd9a6e2fb129dea4d2fad9bcdbe591 (patch) | |
tree | e6fa63a806ef6e62e06ec56177a02898a9db9d6f /plugins/YahooGroups/src/list.h | |
parent | b894583716289087a7144fd770d1a5f96bca82cd (diff) |
unsafe strncat removed
git-svn-id: http://svn.miranda-ng.org/main/trunk@13874 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/YahooGroups/src/list.h')
-rw-r--r-- | plugins/YahooGroups/src/list.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/YahooGroups/src/list.h b/plugins/YahooGroups/src/list.h index ef34699e7c..3414d8fdec 100644 --- a/plugins/YahooGroups/src/list.h +++ b/plugins/YahooGroups/src/list.h @@ -42,8 +42,8 @@ class CGroupsList int Count();
- int Contains(char *group);
- int Index(char *group);
+ int Contains(const char *group);
+ int Index(const char *group);
char *operator [](int index);
};
|