Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Zsolt Vadász
wine
Commits
c1660c9a
Commit
c1660c9a
authored
15 years ago
by
Julian Rüger
Committed by
Alexandre Julliard
15 years ago
Browse files
Options
Downloads
Patches
Plain Diff
windowscodecs: Small spelling fixes.
parent
b0337ada
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
dlls/windowscodecs/jpegformat.c
+1
-1
1 addition, 1 deletion
dlls/windowscodecs/jpegformat.c
dlls/windowscodecs/pngformat.c
+2
-2
2 additions, 2 deletions
dlls/windowscodecs/pngformat.c
with
3 additions
and
3 deletions
dlls/windowscodecs/jpegformat.c
+
1
−
1
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
;
}
...
...
This diff is collapsed.
Click to expand it.
dlls/windowscodecs/pngformat.c
+
2
−
2
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
;
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment