~ubuntu-branches/ubuntu/precise/xfce4-power-manager/precise

« back to all changes in this revision

Viewing changes to src/xfpm-enum.h

  • Committer: Bazaar Package Importer
  • Author(s): Lionel Le Folgoc
  • Date: 2009-10-02 20:15:41 UTC
  • mfrom: (6.1.3 sid)
  • Revision ID: james.westby@ubuntu.com-20091002201541-ognqyxyov51epj84
Tags: 0.8.4-1ubuntu1
* New upstream bugfix release (LP: #438754), merge from Debian unstable,
  remaining Ubuntu changes:
  - debian/patches:
    + xubuntu-use-notification-icons.patch: use our notification-* icons for
      notification bubbles instead of the normal ones LP: #437374
    + 10_pc.patch: added patched files to POTFILES.skip
    + series: created, with these two patches
  - debian/rules: add --with quilt
  - debian/control: build-depends on quilt (>= 0.46-7).

Show diffs side-by-side

added added

removed removed

Lines of Context:
50
50
 
51
51
typedef enum
52
52
{
53
 
    CPU_UNKNOWN         = (1<<0),
54
 
    CPU_POWERSAVE       = (1<<1),
55
 
    CPU_ONDEMAND        = (1<<2),
56
 
    CPU_PERFORMANCE     = (1<<3)
 
53
    CPU_UNKNOWN         = (1 << 0),
 
54
    CPU_POWERSAVE       = (1 << 1),
 
55
    CPU_ONDEMAND        = (1 << 2),
 
56
    CPU_PERFORMANCE     = (1 << 3)
57
57
    
58
58
} XfpmCpuGovernor;
59
59