summaryrefslogtreecommitdiff
path: root/gtk2_ardour/ui_config.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/ui_config.cc
parent27eecdc88b8db2d89efcc1205dd437466d50f058 (diff)
Use g_random_int instead of ::random for portability
Diffstat (limited to 'gtk2_ardour/ui_config.cc')
-rw-r--r--gtk2_ardour/ui_config.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk2_ardour/ui_config.cc b/gtk2_ardour/ui_config.cc
index 86f03bbd95..573e509ab9 100644
--- a/gtk2_ardour/ui_config.cc
+++ b/gtk2_ardour/ui_config.cc
@@ -278,7 +278,7 @@ UIConfiguration::color_by_name (const std::string& name)
}
// cerr << string_compose (_("Color %1 not found"), name) << endl;
- return RGBA_TO_UINT (random()%256,random()%256,random()%256,0xff);
+ return RGBA_TO_UINT (g_random_int()%256,g_random_int()%256,g_random_int()%256,0xff);
}
void