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:
Paul Davis 2007-10-09 02:42:40 +00:00
parent 9e9c7a8536
commit 070ca5043c
16 changed files with 274 additions and 25 deletions

View file

@ -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);
}