diff options
author | George Hazan <george.hazan@gmail.com> | 2012-05-18 19:31:28 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-05-18 19:31:28 +0000 |
commit | 3c4186d203440de9d2dda6e891f65ce69a9c2cc1 (patch) | |
tree | 9ab99c6e5e38ee9e5265f75fee0f9ccc276a74dd /plugins/TipperYM | |
parent | fc02c04506fee6ae6412cff63a6b7536da0a7c00 (diff) |
compilation fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@51 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/TipperYM')
-rw-r--r-- | plugins/TipperYM/bitmap_func.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/TipperYM/bitmap_func.cpp b/plugins/TipperYM/bitmap_func.cpp index e1d8bdd644..40bcf38fc9 100644 --- a/plugins/TipperYM/bitmap_func.cpp +++ b/plugins/TipperYM/bitmap_func.cpp @@ -181,7 +181,7 @@ void CreateFromBitmaps(bool bServiceTip) if (i == SKIN_ITEM_SIDEBAR && (!opt.iSidebarWidth || bServiceTip))
continue;
- if (opt.szImgFile[i] && strlen(opt.szImgFile[i]) != 0)
+ if (opt.szImgFile[i] && opt.szImgFile[i] != 0)
{
FIBITMAP *fib = NULL;
if (!skin.bCached)
|