windowscodecs: Small spelling fixes.

This commit is contained in:
Julian Rüger 2010-03-18 12:02:36 +01:00 committed by Alexandre Julliard
parent b0337ada1a
commit c1660c9a2f
2 changed files with 3 additions and 3 deletions

View File

@ -570,7 +570,7 @@ HRESULT JpegDecoder_CreateInstance(IUnknown *pUnkOuter, REFIID iid, void** ppv)
HRESULT JpegDecoder_CreateInstance(IUnknown *pUnkOuter, REFIID iid, void** ppv)
{
ERR("Trying to load JPEG picture, but JPEG supported not compiled in.\n");
ERR("Trying to load JPEG picture, but JPEG support is not compiled in.\n");
return E_FAIL;
}

View File

@ -1320,13 +1320,13 @@ HRESULT PngEncoder_CreateInstance(IUnknown *pUnkOuter, REFIID iid, void** ppv)
HRESULT PngDecoder_CreateInstance(IUnknown *pUnkOuter, REFIID iid, void** ppv)
{
ERR("Trying to load PNG picture, but PNG supported not compiled in.\n");
ERR("Trying to load PNG picture, but PNG support is not compiled in.\n");
return E_FAIL;
}
HRESULT PngEncoder_CreateInstance(IUnknown *pUnkOuter, REFIID iid, void** ppv)
{
ERR("Trying to save PNG picture, but PNG supported not compiled in.\n");
ERR("Trying to save PNG picture, but PNG support is not compiled in.\n");
return E_FAIL;
}