From 940a68f7fe1292380051ecc1004967f397519c0d Mon Sep 17 00:00:00 2001 From: ed Date: Tue, 24 Apr 2018 08:51:52 +0100 Subject: [PATCH] Removed some debug statements --- .../format_types/juce_VST3PluginFormat.cpp | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/modules/juce_audio_processors/format_types/juce_VST3PluginFormat.cpp b/modules/juce_audio_processors/format_types/juce_VST3PluginFormat.cpp index b3fc2b964b..fe724bbf2d 100644 --- a/modules/juce_audio_processors/format_types/juce_VST3PluginFormat.cpp +++ b/modules/juce_audio_processors/format_types/juce_VST3PluginFormat.cpp @@ -2775,22 +2775,11 @@ private: /** @note An IPlugView, when first created, should start with a ref-count of 1! */ IPlugView* tryCreatingView() const { - DBG ("tryCreatingView called"); - std::cout << "AAAAAH" << std::endl; - std::cerr << "BBBBBH" << std::endl; - IPlugView* v = editController->createView (Vst::ViewType::kEditor); - DBG ("editController->createView (Vst::ViewType::kEditor) called"); - if (v == nullptr) v = editController->createView (nullptr); - - DBG ("editController->createView (nullptr) called"); - if (v == nullptr) editController->queryInterface (IPlugView::iid, (void**) &v); - DBG ("editController->queryInterface (IPlugView::iid, (void**) &v) called"); - return v; }