summaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2016-08-06 14:40:18 +0200
committerRobin Gareus <robin@gareus.org>2016-08-06 14:40:18 +0200
commit8da9000cbcfc199dd4714f18ba19d9676c669425 (patch)
tree4c2e18e2302150f3b8a85c20c36c1250b3a196ac /libs
parentf0a54d0f9c48f01a76304a299d85758919a508a8 (diff)
C++98 compat for 032139ac3
Diffstat (limited to 'libs')
-rw-r--r--libs/surfaces/osc/osc_select_observer.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/surfaces/osc/osc_select_observer.cc b/libs/surfaces/osc/osc_select_observer.cc
index bcea1c078b..9473897820 100644
--- a/libs/surfaces/osc/osc_select_observer.cc
+++ b/libs/surfaces/osc/osc_select_observer.cc
@@ -484,7 +484,7 @@ OSCSelectObserver::gain_message (string path, boost::shared_ptr<Controllable> co
if (gainmode) {
lo_message_add_float (msg, gain_to_slider_position (controllable->get_value()));
- text_message ("/select/name", to_string (accurate_coefficient_to_dB (controllable->get_value())));
+ text_message ("/select/name", to_string (accurate_coefficient_to_dB (controllable->get_value()), std::dec));
gain_timeout = 8;
} else {
if (controllable->get_value() < 1e-15) {
@@ -522,7 +522,7 @@ OSCSelectObserver::send_gain (uint32_t id, boost::shared_ptr<PBD::Controllable>
#else
value = gain_to_slider_position (controllable->get_value());
#endif
- text_with_id ("/select/send_name" , id + 1, to_string (db));
+ text_with_id ("/select/send_name" , id + 1, to_string (db, std::dec));
if (send_timeout.size() > id) {
send_timeout[id] = 8;
}