aboutsummaryrefslogtreecommitdiff
path: root/gui/widget.h
diff options
context:
space:
mode:
authorJohannes Schickel2012-08-28 02:25:14 +0200
committerJohannes Schickel2012-08-28 02:28:17 +0200
commita1e56adad8eb8ed4c8de5850fb2c81af9adb9585 (patch)
tree2da4b803627073b21807197f87d6deedfe2cb138 /gui/widget.h
parenteeb39592599815875a736fdbef67204c2036e935 (diff)
downloadscummvm-rg350-a1e56adad8eb8ed4c8de5850fb2c81af9adb9585.tar.gz
scummvm-rg350-a1e56adad8eb8ed4c8de5850fb2c81af9adb9585.tar.bz2
scummvm-rg350-a1e56adad8eb8ed4c8de5850fb2c81af9adb9585.zip
GUI: Use in-place Surface conversion in widget code.
Diffstat (limited to 'gui/widget.h')
-rw-r--r--gui/widget.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gui/widget.h b/gui/widget.h
index 6f710f302f..e3f712564f 100644
--- a/gui/widget.h
+++ b/gui/widget.h
@@ -230,7 +230,7 @@ public:
protected:
void drawWidget();
- Graphics::Surface *_gfx;
+ Graphics::Surface _gfx;
int _alpha;
bool _transparency;
};
@@ -358,7 +358,7 @@ public:
protected:
void drawWidget();
- Graphics::Surface *_gfx;
+ Graphics::Surface _gfx;
int _alpha;
bool _transparency;
};