remove const from pass-by-value parameters
This commit is contained in:
@@ -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);
|
||||
//@}
|
||||
};
|
||||
|
Reference in New Issue
Block a user