NO-OP: mark various state property names as explicitly non-translated
[ardour.git] / gtk2_ardour / export_timespan_selector.cc
index c87d4ef9e4c2eb29ab01f780bfcb8bae743fc647..0228bd91309160f9d3d638946b38093d4b9760b9 100644 (file)
 
 */
 
-#include "export_timespan_selector.h"
+#include <sstream>
+#include <iomanip>
+
+#include "pbd/enumwriter.h"
+#include "pbd/string_convert.h"
 
 #include "ardour/location.h"
 #include "ardour/types.h"
 #include "ardour/export_handler.h"
 #include "ardour/export_timespan.h"
 
-#include "pbd/enumwriter.h"
-#include "pbd/convert.h"
-
-#include <sstream>
-#include <iomanip>
+#include "export_timespan_selector.h"
 
 #include "pbd/i18n.h"
 
@@ -241,8 +241,8 @@ ExportTimespanSelector::construct_label (ARDOUR::Location const * location) cons
                break;
 
          case AudioClock::Frames:
-               start = to_string (start_frame, std::dec);
-               end = to_string (end_frame, std::dec);
+               start = to_string (start_frame);
+               end = to_string (end_frame);
                break;
        }