1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Removed some unnecessary angled brackets

This commit is contained in:
ed 2021-03-19 15:45:05 +00:00
parent a8aafed53d
commit d6ac6b543b
5 changed files with 5 additions and 5 deletions

View file

@ -1746,7 +1746,7 @@ private:
{
public:
ChangeNotificationClient (WASAPIAudioIODeviceType* d)
: ComBaseClassHelper<IMMNotificationClient> (0), device (d) {}
: ComBaseClassHelper (0), device (d) {}
JUCE_COMRESULT OnDeviceAdded (LPCWSTR) { return notify(); }
JUCE_COMRESULT OnDeviceRemoved (LPCWSTR) { return notify(); }

View file

@ -33,7 +33,7 @@ class JuceIStream : public ComBaseClassHelper<IStream>
{
public:
JuceIStream (InputStream& in) noexcept
: ComBaseClassHelper<IStream> (0), source (in)
: ComBaseClassHelper (0), source (in)
{
}

View file

@ -33,7 +33,7 @@ namespace DirectWriteTypeLayout
{
public:
CustomDirectWriteTextRenderer (IDWriteFontCollection& fonts, const AttributedString& as)
: ComBaseClassHelper<IDWriteTextRenderer> (0),
: ComBaseClassHelper (0),
attributedString (as),
fontCollection (fonts)
{

View file

@ -283,7 +283,7 @@ private:
struct PathGeometrySink : public ComBaseClassHelper<IDWriteGeometrySink>
{
PathGeometrySink() : ComBaseClassHelper<IDWriteGeometrySink> (0) {}
PathGeometrySink() : ComBaseClassHelper (0) {}
void STDMETHODCALLTYPE AddBeziers (const D2D1_BEZIER_SEGMENT* beziers, UINT beziersCount) noexcept override
{

View file

@ -522,7 +522,7 @@ struct CameraDevice::Pimpl : public ChangeBroadcaster
struct GrabberCallback : public ComBaseClassHelperBase<ISampleGrabberCB>
{
GrabberCallback (Pimpl& p)
: ComBaseClassHelperBase<ISampleGrabberCB> (0), owner (p) {}
: ComBaseClassHelperBase (0), owner (p) {}
JUCE_COMRESULT QueryInterface (REFIID refId, void** result)
{