summaryrefslogtreecommitdiff
path: root/gtk2_ardour/vca_time_axis.cc
diff options
context:
space:
mode:
authorTim Mayberry <mojofunk@gmail.com>2016-09-21 15:43:56 +1000
committerTim Mayberry <mojofunk@gmail.com>2017-04-19 09:37:01 +1000
commitf597bb5ed73a65dfbafd05d46c34ce8de379ec51 (patch)
tree48bdb7e5ff82a70826cb17c4de5dbbbab66494be /gtk2_ardour/vca_time_axis.cc
parentb05ce6fb34e6a86093b0217b752f2b7d09236420 (diff)
Use PBD::to_string() from pbd/string_convert.h in VCATimeAxisView
Diffstat (limited to 'gtk2_ardour/vca_time_axis.cc')
-rw-r--r--gtk2_ardour/vca_time_axis.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk2_ardour/vca_time_axis.cc b/gtk2_ardour/vca_time_axis.cc
index 6a09c7f9a8..811437b585 100644
--- a/gtk2_ardour/vca_time_axis.cc
+++ b/gtk2_ardour/vca_time_axis.cc
@@ -17,7 +17,7 @@
*/
-#include "pbd/convert.h"
+#include "pbd/string_convert.h"
#include "ardour/mute_control.h"
#include "ardour/profile.h"
@@ -155,7 +155,7 @@ VCATimeAxisView::set_vca (boost::shared_ptr<VCA> v)
mute_button.set_controllable (_vca->mute_control());
/* VCA number never changes */
- number_label.set_text (to_string (_vca->number(), std::dec));
+ number_label.set_text (PBD::to_string (_vca->number()));
set_height (preset_height (HeightNormal));