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
c43875ce
Commit
c43875ce
authored
Jul 27, 2007
by
Jacek Caban
Committed by
Alexandre Julliard
Jul 27, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Fixed a typo.
parent
b830fb0a
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
nsembed.c
dlls/mshtml/nsembed.c
+2
-2
nsiface.idl
dlls/mshtml/nsiface.idl
+1
-1
nsservice.c
dlls/mshtml/nsservice.c
+1
-1
No files found.
dlls/mshtml/nsembed.c
View file @
c43875ce
...
...
@@ -259,8 +259,8 @@ static void set_profile(void)
static
const
WCHAR
wszMSHTML
[]
=
{
'M'
,
'S'
,
'H'
,
'T'
,
'M'
,
'L'
,
0
};
nsres
=
nsIServiceManager_GetServiceByContactID
(
pServMgr
,
NS_PROFILE_CONTRACTID
,
&
IID_nsIProfile
,
(
void
**
)
&
profile
);
nsres
=
nsIServiceManager_GetServiceByCont
r
actID
(
pServMgr
,
NS_PROFILE_CONTRACTID
,
&
IID_nsIProfile
,
(
void
**
)
&
profile
);
if
(
NS_FAILED
(
nsres
))
{
ERR
(
"Could not get profile service: %08x
\n
"
,
nsres
);
return
;
...
...
dlls/mshtml/nsiface.idl
View file @
c43875ce
...
...
@@ -120,7 +120,7 @@ typedef nsISupports nsIControllerCommandTable;
interface nsIServiceManager : nsISupports
{
nsresult GetService(nsCIDRef aClass, nsIIDRef aIID, void **result);
nsresult GetServiceByCont
actID(const char *aCont
actID, nsIIDRef aIID, void **result);
nsresult GetServiceByCont
ractID(const char *aContr
actID, nsIIDRef aIID, void **result);
nsresult IsServiceInstantiated(nsCIDRef aClass, nsIIDRef aIID, BOOL *_retval);
nsresult IsServiceInstantiatedByContractID(const char *aContractID, nsIIDRef aIID, BOOL *_retval);
}
...
...
dlls/mshtml/nsservice.c
View file @
c43875ce
...
...
@@ -465,7 +465,7 @@ void register_nsservice(nsIComponentRegistrar *registrar, nsIServiceManager *ser
if
(
NS_FAILED
(
nsres
))
ERR
(
"RegisterFactory failed: %08x
\n
"
,
nsres
);
nsres
=
nsIServiceManager_GetServiceByContactID
(
service_manager
,
NS_WINDOWWATCHER_CONTRACTID
,
nsres
=
nsIServiceManager_GetServiceByCont
r
actID
(
service_manager
,
NS_WINDOWWATCHER_CONTRACTID
,
&
IID_nsIWindowWatcher
,
(
void
**
)
&
window_watcher
);
if
(
NS_SUCCEEDED
(
nsres
))
{
nsres
=
nsIWindowWatcher_SetWindowCreator
(
window_watcher
,
...
...
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