diff options
Diffstat (limited to 'include/vcl/lazydelete.hxx')
-rw-r--r-- | include/vcl/lazydelete.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/vcl/lazydelete.hxx b/include/vcl/lazydelete.hxx index 013205b3a64e..dd50f7f13092 100644 --- a/include/vcl/lazydelete.hxx +++ b/include/vcl/lazydelete.hxx @@ -49,7 +49,7 @@ namespace vcl static vcl::DeleteOnDeinit< BitmapEx > aBmp( new BitmapEx( ... ) ); if( aBmp.get() ) // check whether DeInitVCL has been called already - DrawBitmapEx( Point( 10, 10 ), *aBmp.get() ); + DrawBitmapEx( Point( 10, 10 ), *aBmp ); } */ |