summaryrefslogtreecommitdiff
path: root/gtk2_ardour/route_time_axis.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2013-06-08 09:03:26 +0200
committerRobin Gareus <robin@gareus.org>2013-06-08 09:03:26 +0200
commitce0aa96838ff7c517eae7b4070afdb61932be3aa (patch)
tree3e6ed31b0830f6d4826210c7f2dd1937eca196c7 /gtk2_ardour/route_time_axis.cc
parentfea8e860c625fc669bbdc469e44e9ba5026b9bf2 (diff)
NOOP - use PBD's std::string to number functions
Diffstat (limited to 'gtk2_ardour/route_time_axis.cc')
-rw-r--r--gtk2_ardour/route_time_axis.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk2_ardour/route_time_axis.cc b/gtk2_ardour/route_time_axis.cc
index fa78d6dbf6..174cceeede 100644
--- a/gtk2_ardour/route_time_axis.cc
+++ b/gtk2_ardour/route_time_axis.cc
@@ -999,7 +999,7 @@ RouteTimeAxisView::resolve_new_group_playlist_name(std::string &basename, vector
tmp = tmp.substr(idx + group_string.length());
// and find the largest current number
- int x = atoi(tmp.c_str());
+ int x = atoi(tmp);
if (x > maxnumber) {
maxnumber = x;
}