mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-03 12:19:33 +01:00
new keybinding editor, mostly finished but not 100%
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@2531 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
9e9c7a8536
commit
070ca5043c
16 changed files with 274 additions and 25 deletions
|
|
@ -49,7 +49,7 @@ split (string str, vector<string>& result, char splitchar)
|
|||
|
||||
remaining = str;
|
||||
|
||||
while ((pos = remaining.find_first_of (':')) != string::npos) {
|
||||
while ((pos = remaining.find_first_of (splitchar)) != string::npos) {
|
||||
result.push_back (remaining.substr (0, pos));
|
||||
remaining = remaining.substr (pos+1);
|
||||
}
|
||||
|
|
@ -87,7 +87,7 @@ split (ustring str, vector<ustring>& result, char splitchar)
|
|||
|
||||
remaining = str;
|
||||
|
||||
while ((pos = remaining.find_first_of (':')) != ustring::npos) {
|
||||
while ((pos = remaining.find_first_of (splitchar)) != ustring::npos) {
|
||||
result.push_back (remaining.substr (0, pos));
|
||||
remaining = remaining.substr (pos+1);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue