Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
f20d5bd9
Commit
f20d5bd9
authored
Oct 30, 2006
by
Jean-Paul Saman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove excess whitespace
parent
c261c25f
Changes
16
Show whitespace changes
Inline
Side-by-side
Showing
16 changed files
with
48 additions
and
61 deletions
+48
-61
activex/connectioncontainer.cpp
activex/connectioncontainer.cpp
+1
-1
activex/main.cpp
activex/main.cpp
+5
-6
activex/objectsafety.h
activex/objectsafety.h
+5
-5
activex/oleinplaceobject.h
activex/oleinplaceobject.h
+2
-3
activex/oleobject.cpp
activex/oleobject.cpp
+3
-3
activex/oleobject.h
activex/oleobject.h
+1
-1
activex/persistpropbag.cpp
activex/persistpropbag.cpp
+0
-1
activex/persiststreaminit.cpp
activex/persiststreaminit.cpp
+1
-1
activex/persiststreaminit.h
activex/persiststreaminit.h
+0
-1
activex/plugin.cpp
activex/plugin.cpp
+23
-24
activex/plugin.h
activex/plugin.h
+1
-2
activex/provideclassinfo.cpp
activex/provideclassinfo.cpp
+0
-1
activex/provideclassinfo.h
activex/provideclassinfo.h
+0
-1
activex/supporterrorinfo.cpp
activex/supporterrorinfo.cpp
+0
-1
activex/utils.cpp
activex/utils.cpp
+4
-5
activex/vlccontrol.h
activex/vlccontrol.h
+2
-5
No files found.
activex/connectioncontainer.cpp
View file @
f20d5bd9
activex/main.cpp
View file @
f20d5bd9
...
@@ -459,4 +459,3 @@ STDAPI_(BOOL) DllMain(HANDLE hModule, DWORD fdwReason, LPVOID lpReserved )
...
@@ -459,4 +459,3 @@ STDAPI_(BOOL) DllMain(HANDLE hModule, DWORD fdwReason, LPVOID lpReserved )
};
};
#endif
#endif
activex/objectsafety.h
View file @
f20d5bd9
activex/oleinplaceobject.h
View file @
f20d5bd9
...
@@ -66,4 +66,3 @@ private:
...
@@ -66,4 +66,3 @@ private:
};
};
#endif
#endif
activex/oleobject.cpp
View file @
f20d5bd9
activex/oleobject.h
View file @
f20d5bd9
activex/persistpropbag.cpp
View file @
f20d5bd9
...
@@ -243,4 +243,3 @@ STDMETHODIMP VLCPersistPropertyBag::Save(LPPROPERTYBAG pPropBag, BOOL fClearDirt
...
@@ -243,4 +243,3 @@ STDMETHODIMP VLCPersistPropertyBag::Save(LPPROPERTYBAG pPropBag, BOOL fClearDirt
return
S_OK
;
return
S_OK
;
};
};
activex/persiststreaminit.cpp
View file @
f20d5bd9
activex/persiststreaminit.h
View file @
f20d5bd9
...
@@ -69,4 +69,3 @@ private:
...
@@ -69,4 +69,3 @@ private:
};
};
#endif
#endif
activex/plugin.cpp
View file @
f20d5bd9
...
@@ -1162,4 +1162,3 @@ void VLCPlugin::fireOnStopEvent(void)
...
@@ -1162,4 +1162,3 @@ void VLCPlugin::fireOnStopEvent(void)
DISPPARAMS
dispparamsNoArgs
=
{
NULL
,
NULL
,
0
,
0
};
DISPPARAMS
dispparamsNoArgs
=
{
NULL
,
NULL
,
0
,
0
};
vlcConnectionPointContainer
->
fireEvent
(
DISPID_StopEvent
,
&
dispparamsNoArgs
);
vlcConnectionPointContainer
->
fireEvent
(
DISPID_StopEvent
,
&
dispparamsNoArgs
);
};
};
activex/plugin.h
View file @
f20d5bd9
...
@@ -272,4 +272,3 @@ private:
...
@@ -272,4 +272,3 @@ private:
};
};
#endif
#endif
activex/provideclassinfo.cpp
View file @
f20d5bd9
...
@@ -57,4 +57,3 @@ STDMETHODIMP VLCProvideClassInfo::GetGUID(DWORD dwGuidKind, GUID *pGUID)
...
@@ -57,4 +57,3 @@ STDMETHODIMP VLCProvideClassInfo::GetGUID(DWORD dwGuidKind, GUID *pGUID)
return
S_OK
;
return
S_OK
;
};
};
activex/provideclassinfo.h
View file @
f20d5bd9
...
@@ -64,4 +64,3 @@ private:
...
@@ -64,4 +64,3 @@ private:
};
};
#endif
#endif
activex/supporterrorinfo.cpp
View file @
f20d5bd9
...
@@ -67,4 +67,3 @@ void VLCSupportErrorInfo::setErrorInfo(LPCOLESTR progid, REFIID riid, const char
...
@@ -67,4 +67,3 @@ void VLCSupportErrorInfo::setErrorInfo(LPCOLESTR progid, REFIID riid, const char
SysFreeString
(
bstrDescription
);
SysFreeString
(
bstrDescription
);
}
}
};
};
activex/utils.cpp
View file @
f20d5bd9
...
@@ -184,4 +184,3 @@ void HimetricFromDP(HDC hdc, LPPOINT pt, int count)
...
@@ -184,4 +184,3 @@ void HimetricFromDP(HDC hdc, LPPOINT pt, int count)
++
pt
;
++
pt
;
}
}
};
};
activex/vlccontrol.h
View file @
f20d5bd9
...
@@ -27,7 +27,6 @@
...
@@ -27,7 +27,6 @@
class
VLCControl
:
public
IVLCControl
class
VLCControl
:
public
IVLCControl
{
{
public:
public:
VLCControl
(
VLCPlugin
*
p_instance
)
:
_p_instance
(
p_instance
),
_p_typeinfo
(
NULL
)
{};
VLCControl
(
VLCPlugin
*
p_instance
)
:
_p_instance
(
p_instance
),
_p_typeinfo
(
NULL
)
{};
...
@@ -102,8 +101,6 @@ private:
...
@@ -102,8 +101,6 @@ private:
VLCPlugin
*
_p_instance
;
VLCPlugin
*
_p_instance
;
ITypeInfo
*
_p_typeinfo
;
ITypeInfo
*
_p_typeinfo
;
};
};
#endif
#endif
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