summaryrefslogtreecommitdiff
path: root/include/vcl/lazydelete.hxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2016-10-06 20:34:29 +0100
committerCaolán McNamara <caolanm@redhat.com>2016-10-06 20:48:02 +0100
commit86e807dcd0e7996599a147fae683012a593e1359 (patch)
tree7ff3f598f7f0568e029ca3c58af53521bc511ca5 /include/vcl/lazydelete.hxx
parentc874231c3ab0dc836db497ed63865a226e41bb45 (diff)
drop ResId from example
Change-Id: I55719033e6d130673b208b58305e8062031a0a47
Diffstat (limited to 'include/vcl/lazydelete.hxx')
-rw-r--r--include/vcl/lazydelete.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/vcl/lazydelete.hxx b/include/vcl/lazydelete.hxx
index ca21f5c0ad08..36a76b86e62a 100644
--- a/include/vcl/lazydelete.hxx
+++ b/include/vcl/lazydelete.hxx
@@ -202,7 +202,7 @@ namespace vcl
SomeWindow::Paint()
{
- static vcl::DeleteOnDeinit< BitmapEx > aBmp( new BitmapEx( ResId( 1000, myResMgr ) ) );
+ static vcl::DeleteOnDeinit< BitmapEx > aBmp( new BitmapEx( ... ) );
if( aBmp.get() ) // check whether DeInitVCL has been called already
DrawBitmapEx( Point( 10, 10 ), *aBmp.get() );