diff options
-rw-r--r-- | src/FbTk/PixmapWithMask.hh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/FbTk/PixmapWithMask.hh b/src/FbTk/PixmapWithMask.hh index 6803f3f..5925fb7 100644 --- a/src/FbTk/PixmapWithMask.hh +++ b/src/FbTk/PixmapWithMask.hh | |||
@@ -19,7 +19,7 @@ | |||
19 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | 19 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
20 | // DEALINGS IN THE SOFTWARE. | 20 | // DEALINGS IN THE SOFTWARE. |
21 | 21 | ||
22 | // $Id: PixmapWithMask.hh,v 1.1 2003/08/22 21:25:14 fluxgen Exp $ | 22 | // $Id: PixmapWithMask.hh,v 1.2 2003/08/27 14:21:25 fluxgen Exp $ |
23 | 23 | ||
24 | #ifndef FBTK_PIXMAPWITHMASK_HH | 24 | #ifndef FBTK_PIXMAPWITHMASK_HH |
25 | #define FBTK_PIXMAPWITHMASK_HH | 25 | #define FBTK_PIXMAPWITHMASK_HH |
@@ -36,7 +36,8 @@ public: | |||
36 | pixmap().scale(width, height); | 36 | pixmap().scale(width, height); |
37 | mask().scale(width, height); | 37 | mask().scale(width, height); |
38 | } | 38 | } |
39 | 39 | unsigned int width() const { return m_pixmap.width(); } | |
40 | unsigned int height() const { return m_pixmap.height(); } | ||
40 | FbPixmap &pixmap() { return m_pixmap; } | 41 | FbPixmap &pixmap() { return m_pixmap; } |
41 | FbPixmap &mask() { return m_mask; } | 42 | FbPixmap &mask() { return m_mask; } |
42 | 43 | ||