diff options
author | Erkin Bahceci <erkinbah@gmail.com> | 2009-08-15 12:21:39 -0500 |
---|---|---|
committer | Erkin Bahceci <erkinbah@gmail.com> | 2009-08-15 12:21:39 -0500 |
commit | 2c609bcd0eae44379747b9943cc9e85669c9c734 (patch) | |
tree | 03355900f77fa443662edce8fd6e650cb321ee34 /include | |
parent | db7813dec1cd5f4aff4a21815370d2293e03bb1e (diff) | |
download | zcomp-2c609bcd0eae44379747b9943cc9e85669c9c734.tar.gz zcomp-2c609bcd0eae44379747b9943cc9e85669c9c734.tar.bz2 |
Unsigned int conversions.
Diffstat (limited to 'include')
-rw-r--r-- | include/core/output.h | 2 | ||||
-rw-r--r-- | include/core/screen.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/core/output.h b/include/core/output.h index 0d12d54..b925c90 100644 --- a/include/core/output.h +++ b/include/core/output.h @@ -43,7 +43,7 @@ class CompOutput : public CompRect { const CompRect& workArea () const; void setWorkArea (const CompRect&); - void setGeometry (int x, int y, unsigned int width, unsigned int height); + void setGeometry (int x, int y, int width, int height); void setId (CompString, unsigned int); typedef std::vector<CompOutput> vector; diff --git a/include/core/screen.h b/include/core/screen.h index 286b17e..409757c 100644 --- a/include/core/screen.h +++ b/include/core/screen.h @@ -281,7 +281,7 @@ class CompScreen : CompRect getCurrentOutputExtents (); - const CompRect & getWorkareaForOutput (int output) const; + const CompRect & getWorkareaForOutput (unsigned int outputNum) const; void viewportForGeometry (const CompWindow::Geometry &gm, CompPoint &viewport); |