Fix wxUIActionSimulator::Text() parameter documentation
This function explicitly accepts ASCII strings only, so it's limited to "const char*", but was incorrectly documented as taking wxString. Closes https://github.com/wxWidgets/wxWidgets/pull/1879
This commit is contained in:
parent
66c8437952
commit
5b810b129d
1 changed files with 2 additions and 2 deletions
|
|
@ -176,8 +176,8 @@ public:
|
|||
keyboard layout but may not work with other layouts.
|
||||
|
||||
@param text
|
||||
The string to type.
|
||||
The string, containing only US ASCII characters, to type.
|
||||
*/
|
||||
bool Text(const wxString& text);
|
||||
bool Text(const char* text);
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue