~cimi/overlay-scrollbar/fix-window-group

« back to all changes in this revision

Viewing changes to os/os-utils.c

  • Committer: Andrea Cimitan
  • Date: 2011-06-09 14:52:24 UTC
  • mfrom: (244.2.1 coding-style-on-pointers)
  • Revision ID: andrea.cimitan@canonical.com-20110609145224-tl702cwc8mttojhi
Merged branch coding-style-on-pointers-and-removed-whitelist

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
/* Public functions. */
30
30
 
31
31
gboolean
32
 
os_utils_is_blacklisted (const gchar* program)
 
32
os_utils_is_blacklisted (const gchar *program)
33
33
{
34
34
  /* Black-list of program names retrieved with g_get_prgname(). */
35
 
  static const gchar *const blacklist[] = {
 
35
  static const gchar *blacklist[] = {
36
36
    "apport-gtk",
37
37
    "codeblocks",
38
38
    "codelite",
75
75
 
76
76
  return FALSE;
77
77
}
78
 
 
79
 
gboolean
80
 
os_utils_is_whitelisted (const gchar* program)
81
 
{
82
 
  return TRUE;
83
 
}