Browse Source

Removed some unnecessary angled brackets

v6.1.6
ed 4 years ago
parent
commit
d6ac6b543b
5 changed files with 5 additions and 5 deletions
  1. +1
    -1
      modules/juce_audio_devices/native/juce_win32_WASAPI.cpp
  2. +1
    -1
      modules/juce_audio_formats/codecs/juce_WindowsMediaAudioFormat.cpp
  3. +1
    -1
      modules/juce_graphics/native/juce_win32_DirectWriteTypeLayout.cpp
  4. +1
    -1
      modules/juce_graphics/native/juce_win32_DirectWriteTypeface.cpp
  5. +1
    -1
      modules/juce_video/native/juce_win32_CameraDevice.h

+ 1
- 1
modules/juce_audio_devices/native/juce_win32_WASAPI.cpp View File

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


+ 1
- 1
modules/juce_audio_formats/codecs/juce_WindowsMediaAudioFormat.cpp View File

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


+ 1
- 1
modules/juce_graphics/native/juce_win32_DirectWriteTypeLayout.cpp View File

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


+ 1
- 1
modules/juce_graphics/native/juce_win32_DirectWriteTypeface.cpp View File

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


+ 1
- 1
modules/juce_video/native/juce_win32_CameraDevice.h View File

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


Loading…
Cancel
Save