Changeset 43e3061


Ignore:
Timestamp:
Jun 1, 2010, 8:06:46 PM (14 years ago)
Author:
David Benjamin <davidben@mit.edu>
Branches:
master, release-1.10, release-1.7, release-1.8, release-1.9
Children:
04d76ef
Parents:
f57a106
Message:
Wire set_rightshift to fire its signal too
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • global.c

    rd70f45f r43e3061  
    339339
    340340void owl_global_set_rightshift(owl_global *g, int i) {
    341   g->rightshift=i;
     341  g_object_set(g->gn, "rightshift", i, NULL);
    342342}
    343343
  • globalnotifiergen.pl

    rf3a9d4d r43e3061  
    6060    /* normal properties */
    6161    case PROP_RIGHTSHIFT:
    62       owl_global_set_rightshift(notifier->g, g_value_get_int(value));
     62      notifier->g->rightshift = g_value_get_int(value);
    6363      break;
    6464    /* generated from variable listings */
Note: See TracChangeset for help on using the changeset viewer.