mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 14:54:56 +01:00
Use PBD::to_string() from pbd/string_convert.h in VCATimeAxisView
This commit is contained in:
parent
b05ce6fb34
commit
f597bb5ed7
1 changed files with 2 additions and 2 deletions
|
|
@ -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));
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue