remove const from pass-by-value parameters

This commit is contained in:
Paul Cornett
2016-01-16 10:55:01 -08:00
parent c557f66eaf
commit 56701052eb
25 changed files with 54 additions and 54 deletions

View File

@@ -85,7 +85,7 @@ public:
Returns @true if the dictionary was successfully set.
*/
bool SetDictionary(const char *data, const size_t datalen);
bool SetDictionary(const char *data, size_t datalen);
bool SetDictionary(const wxMemoryBuffer &buf);
//@}
};
@@ -144,7 +144,7 @@ public:
Returns @true if the dictionary was successfully set.
*/
bool SetDictionary(const char *data, const size_t datalen);
bool SetDictionary(const char *data, size_t datalen);
bool SetDictionary(const wxMemoryBuffer &buf);
//@}
};