summaryrefslogtreecommitdiff
path: root/gtk2_ardour/utils.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2013-07-11 11:38:46 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2013-07-11 11:38:46 -0400
commitf47499f1579c47a15ebcdbcdc5f830748b05cc3c (patch)
tree602b295cbf9fe7a73e47a4574a7fd3db89c5cb9c /gtk2_ardour/utils.cc
parent27eecdc88b8db2d89efcc1205dd437466d50f058 (diff)
Use g_random_int instead of ::random for portability
Diffstat (limited to 'gtk2_ardour/utils.cc')
-rw-r--r--gtk2_ardour/utils.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk2_ardour/utils.cc b/gtk2_ardour/utils.cc
index d4bc460269..eb3f4ab55d 100644
--- a/gtk2_ardour/utils.cc
+++ b/gtk2_ardour/utils.cc
@@ -781,9 +781,9 @@ unique_random_color (list<Gdk::Color>& used_colors)
const int32_t max_saturation = 48000; // 65535 would open up the whole color wheel
- newcolor.set_red (random() % max_saturation);
- newcolor.set_blue (random() % max_saturation);
- newcolor.set_green (random() % max_saturation);
+ newcolor.set_red (g_random_int() % max_saturation);
+ newcolor.set_blue (g_random_int() % max_saturation);
+ newcolor.set_green (g_random_int() % max_saturation);
if (used_colors.size() == 0) {
used_colors.push_back (newcolor);