summaryrefslogtreecommitdiff
path: root/include/canvas/vclwrapper.hxx
diff options
context:
space:
mode:
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() )