Browse Source

Fixed a namespace problem with the iOS build.

tags/2021-05-28
jules 11 years ago
parent
commit
6045915256
2 changed files with 4 additions and 1 deletions
  1. +1
    -1
      modules/juce_events/messages/juce_MessageManager.cpp
  2. +3
    -0
      modules/juce_gui_basics/native/juce_ios_UIViewComponentPeer.mm

+ 1
- 1
modules/juce_events/messages/juce_MessageManager.cpp View File

@@ -70,7 +70,7 @@ MessageManager* MessageManager::getInstance()
return instance;
}
inline MessageManager* MessageManager::getInstanceWithoutCreating() noexcept
MessageManager* MessageManager::getInstanceWithoutCreating() noexcept
{
return instance;
}


+ 3
- 0
modules/juce_gui_basics/native/juce_ios_UIViewComponentPeer.mm View File

@@ -70,6 +70,9 @@ namespace Orientations
//==============================================================================
} // (juce namespace)
using namespace juce;
@interface JuceUIView : UIView <UITextViewDelegate>
{
@public


Loading…
Cancel
Save