diff options
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;
}
|