mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 23:35:03 +01:00
add keybinding editor
git-svn-id: svn://localhost/ardour2/trunk@2543 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
02196886bb
commit
29f0d9732e
13 changed files with 264 additions and 20 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