diff options
author | Caolán McNamara <caolanm@redhat.com> | 2016-10-06 20:34:29 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2016-10-06 20:48:02 +0100 |
commit | 86e807dcd0e7996599a147fae683012a593e1359 (patch) | |
tree | 7ff3f598f7f0568e029ca3c58af53521bc511ca5 /include | |
parent | c874231c3ab0dc836db497ed63865a226e41bb45 (diff) |
drop ResId from example
Change-Id: I55719033e6d130673b208b58305e8062031a0a47
Diffstat (limited to 'include')
-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 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() ); |