1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-17 00:44:19 +00:00
This commit is contained in:
jules 2007-08-15 17:15:29 +00:00
parent 62e4870bde
commit f3d0fe71d8

View file

@ -893,16 +893,16 @@ void GraphEditorPanel::endDraggingConnector (const MouseEvent& e)
//==============================================================================
class StatusAndTooltipBar : public Component,
private Timer
class TooltipBar : public Component,
private Timer
{
public:
StatusAndTooltipBar()
TooltipBar()
{
startTimer (100);
}
~StatusAndTooltipBar()
~TooltipBar()
{
}
@ -947,7 +947,7 @@ GraphDocumentComponent::GraphDocumentComponent (AudioDeviceManager* deviceManage
addAndMakeVisible (keyboardComp = new MidiKeyboardComponent (graphPlayer->keyState,
MidiKeyboardComponent::horizontalKeyboard));
addAndMakeVisible (statusBar = new StatusAndTooltipBar());
addAndMakeVisible (statusBar = new TooltipBar());
graphPlayer->setAudioDeviceManager (deviceManager);