Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
c1660c9a
Commit
c1660c9a
authored
Mar 18, 2010
by
Julian Rüger
Committed by
Alexandre Julliard
Mar 18, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
windowscodecs: Small spelling fixes.
parent
b0337ada
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
jpegformat.c
dlls/windowscodecs/jpegformat.c
+1
-1
pngformat.c
dlls/windowscodecs/pngformat.c
+2
-2
No files found.
dlls/windowscodecs/jpegformat.c
View file @
c1660c9a
...
...
@@ -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 support
ed
not compiled in.
\n
"
);
ERR
(
"Trying to load JPEG picture, but JPEG support
is
not compiled in.
\n
"
);
return
E_FAIL
;
}
...
...
dlls/windowscodecs/pngformat.c
View file @
c1660c9a
...
...
@@ -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 support
ed
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 support
ed
not compiled in.
\n
"
);
ERR
(
"Trying to save PNG picture, but PNG support
is
not compiled in.
\n
"
);
return
E_FAIL
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment