How use AknIconUtils ?
| Thu, 2005-09-15 23:53 | |
|
I am trying use AknIconUtils:
AknIconUtils *myAknIconUtils; myAknIconUtils->ScaleBitmapL( TSize(176,178) ,imagetarget,imagesource); but I recieve Link error: undefined reference to AknIconUtils::ScaleBitmapL I have added "library aknicon.lib" to my MMP and recompiled. Please help Many thanks diluo |
|






Forum posts: 19
Forum posts: 7
aAAAa somebody help !!!
Forum posts: 108
Hi,
If you look at the heder file , this ScaleBitmapL is a static function. You can use this with
class name & scope resoulution rather than using pointer type object.
AknIconUtils :: ScaleBitmapL(TSize(176,178) ,imagetarget,imagesource);
Hope it will help you,
Regards,
Dipak
DipakBaviskar