~ctwm/ctwm/trunk

« back to all changes in this revision

Viewing changes to workspace_utils.c

  • Committer: Matthew Fuller
  • Date: 2016-08-07 03:11:36 UTC
  • mto: This revision was merged to the branch mainline in revision 511.
  • Revision ID: fullermd@over-yonder.net-20160807031136-xvk31tqc4ftl293n
GC the useBackgroundInfo setter; since we're already exporting the var
anyway for workspace_manager.c, might as well just set it directly
until I figure out what to do with it long-term.

Show diffs side-by-side

added added

removed removed

Lines of Context:
572
572
        /* Nope */
573
573
        return NULL;
574
574
}
575
 
 
576
 
 
577
 
/*
578
 
 * Util for setting useBackgroundInfo var, to reduce its exposure across
579
 
 * the multiple files that might touch it.
580
 
 */
581
 
void
582
 
ws_set_useBackgroundInfo(bool newval)
583
 
{
584
 
        useBackgroundInfo = newval;
585
 
}