diff options
author | Pierre Ossman <ossman@cendio.se> | 2023-01-23 20:15:28 +0100 |
---|---|---|
committer | Pierre Ossman <ossman@cendio.se> | 2023-02-04 14:03:13 +0100 |
commit | fd243a8d3ae8e776fb2af1136feee7f8c083d2da (patch) | |
tree | 71cd7b2fcac7d398154afe58a579d87d7fadf9bd /win/vncconfig/Connections.h | |
parent | 3143bfa1545c2aa70781c5c780df7e66f123614f (diff) | |
download | tigervnc-fd243a8d3ae8e776fb2af1136feee7f8c083d2da.tar.gz tigervnc-fd243a8d3ae8e776fb2af1136feee7f8c083d2da.zip |
Remove "str" prefix from string helpers
This matches the naming in STL, which is what we are mostly mimicing now
that we are using std::string for these functions.
Diffstat (limited to 'win/vncconfig/Connections.h')
-rw-r--r-- | win/vncconfig/Connections.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/vncconfig/Connections.h b/win/vncconfig/Connections.h index 1cf01777..888fd77b 100644 --- a/win/vncconfig/Connections.h +++ b/win/vncconfig/Connections.h @@ -99,7 +99,7 @@ namespace rfb { SendMessage(listBox, LB_DELETESTRING, 0, 0); std::vector<std::string> hostv; - hostv = strSplit(hosts, ','); + hostv = split(hosts, ','); for (size_t i = 0; i < hostv.size(); i++) { if (!hostv[i].empty()) SendMessage(listBox, LB_ADDSTRING, 0, (LPARAM)hostv[i].c_str()); |