Browse Source

OSX SystemTrayIcon fix.

tags/2021-05-28
jules 12 years ago
parent
commit
0e55e30a67
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      modules/juce_gui_extra/native/juce_mac_SystemTrayIcon.cpp

+ 2
- 1
modules/juce_gui_extra/native/juce_mac_SystemTrayIcon.cpp View File

@@ -49,6 +49,7 @@ public:
~Pimpl()
{
[[NSStatusBar systemStatusBar] removeStatusItem: statusItem];
[statusItem release];
[view release];
[statusIcon release];
@@ -201,7 +202,7 @@ void SystemTrayIconComponent::setIconImage (const Image& newImage)
}
}
void SystemTrayIconComponent::setIconTooltip (const String& /* tooltip */)
void SystemTrayIconComponent::setIconTooltip (const String&)
{
// xxx not yet implemented!
}

Loading…
Cancel
Save