1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-20 01:14:20 +00:00

Minor fix for iPhone.

This commit is contained in:
Julian Storer 2010-01-18 22:49:47 +00:00
parent 24c60f447c
commit 75a65399ff
3 changed files with 3 additions and 10 deletions

View file

@ -234720,8 +234720,7 @@ void SystemTrayIconComponent::setIconTooltip (const String& tooltip)
void PlatformUtilities::beep()
{
fprintf (stdout, "\a");
fflush (stdout);
std::cout << "\a" << std::flush;
}
bool AlertWindow::showNativeDialogBox (const String& title,
@ -239497,8 +239496,7 @@ void juce_updateMultiMonitorInfo (Array <Rectangle>& monitorCoords, const bool c
void Logger::outputDebugString (const String& text) throw()
{
fputs (text.toUTF8(), stderr);
fputs ("\n", stderr);
std::cerr << (const char*) text.toUTF8() << std::endl;
}
void Logger::outputDebugPrintf (const tchar* format, ...) throw()
@ -241695,8 +241693,6 @@ void MessageManager::runDispatchLoop()
runDispatchLoopUntil (-1);
}
static const int quitMessageId = 0xfffff321;
void MessageManager::stopDispatchLoop()
{
exit (0); // iPhone apps get no mercy..

View file

@ -136,8 +136,6 @@ void MessageManager::runDispatchLoop()
runDispatchLoopUntil (-1);
}
static const int quitMessageId = 0xfffff321;
void MessageManager::stopDispatchLoop()
{
exit (0); // iPhone apps get no mercy..

View file

@ -30,8 +30,7 @@
//==============================================================================
void Logger::outputDebugString (const String& text) throw()
{
fputs (text.toUTF8(), stderr);
fputs ("\n", stderr);
std::cerr << (const char*) text.toUTF8() << std::endl;
}
void Logger::outputDebugPrintf (const tchar* format, ...) throw()