~smspillaz/compiz-core/compiz-core.fix_936675

« back to all changes in this revision

Viewing changes to src/window/extents/include/core/windowextents.h

  • Committer: Daniel van Vugt
  • Author(s): Sam Spilsbury
  • Date: 2012-02-09 07:48:57 UTC
  • Revision ID: vanvugt@gmail.com-20120209074857-sw5wuk431uqkzgzb
Be a little smarter about updating decorations (LP: #928173)

Merged -r2983..2985 from lp:~smspillaz/compiz-core/compiz-core.decor_928173

Show diffs side-by-side

added added

removed removed

Lines of Context:
41
41
 * Specifies the left, right, top and bottom positions of a window's
42
42
 * geometry
43
43
 */
44
 
struct Extents {
 
44
class Extents
 
45
{
45
46
    public:
 
47
 
 
48
        Extents ();
 
49
        Extents (int left, int right, int top, int bottom);
 
50
 
46
51
        int left;
47
52
        int right;
48
53
        int top;