summaryrefslogtreecommitdiff
path: root/include/canvas/vclwrapper.hxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-04-13 23:13:04 +0200
committerStephan Bergmann <sbergman@redhat.com>2016-04-18 15:30:06 +0200
commite88136701a7f6e573b8c05ee209e8142f2e20ad6 (patch)
treee0a876795ec59f7562ff3fc27c9d264a6154bbb2 /include/canvas/vclwrapper.hxx
parentd13536228fff8c191af45446951d0662605da792 (diff)
Avoid reserved identifier
Change-Id: If0194bf8c888bc743b64984f6b655be4fe52aa1b
Diffstat (limited to 'include/canvas/vclwrapper.hxx')
-rw-r--r--include/canvas/vclwrapper.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/canvas/vclwrapper.hxx b/include/canvas/vclwrapper.hxx
index b3a28771c8c8..dcef39c89a95 100644
--- a/include/canvas/vclwrapper.hxx
+++ b/include/canvas/vclwrapper.hxx
@@ -51,10 +51,10 @@ namespace canvas
member/method access is performed by operator-> instead of
the non-existing "operator.".
*/
- template< class _Wrappee > class VCLObject
+ template< class Wrappee_ > class VCLObject
{
public:
- typedef _Wrappee Wrappee;
+ typedef Wrappee_ Wrappee;
VCLObject() :
mpWrappee( new Wrappee() )