diff options
author | George Hazan <george.hazan@gmail.com> | 2013-01-23 20:14:08 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-01-23 20:14:08 +0000 |
commit | 27ce9521078335a4333a637e73dd74b338986ea6 (patch) | |
tree | bbfc6e1cc6d8e7a810eeac3ea1c5034c76ea22fe /plugins/Clist_modern/src/modern_skinengine.cpp | |
parent | 5465446ca0142a6ca12065b87bc31d346a516f3d (diff) |
- no more references to clisticons.dll
- code cleaning
git-svn-id: http://svn.miranda-ng.org/main/trunk@3256 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Clist_modern/src/modern_skinengine.cpp')
-rw-r--r-- | plugins/Clist_modern/src/modern_skinengine.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/Clist_modern/src/modern_skinengine.cpp b/plugins/Clist_modern/src/modern_skinengine.cpp index c1656b3f26..8972752fe5 100644 --- a/plugins/Clist_modern/src/modern_skinengine.cpp +++ b/plugins/Clist_modern/src/modern_skinengine.cpp @@ -470,10 +470,10 @@ HRESULT SkinEngineLoadModule() {
char* p = strrchr( tDllPath, '\\' );
if ( p != NULL )
- strcpy( p+1, "ImgDecoder.dll" );
+ strcpy( p+1, "ImgDecoder.dll");
else
{
- strcpy( tDllPath, "ImgDecoder.dll" );
+ strcpy( tDllPath, "ImgDecoder.dll");
}
}
@@ -1959,7 +1959,7 @@ HBITMAP ske_LoadGlyphImage_Png2Dib(char * szFilename) BYTE* pDibBits;
if ( !ServiceExists( MS_PNG2DIB )) {
- MessageBox( NULL, TranslateT( "You need an image services plugin to process PNG images." ), TranslateT( "Error" ), MB_OK );
+ MessageBox( NULL, TranslateT("You need an image services plugin to process PNG images."), TranslateT("Error"), MB_OK );
return (HBITMAP)NULL;
}
|