Browse Source

tags/2021-05-28
jules 18 years ago
parent
commit
bcc7ad9a25
4 changed files with 6795 additions and 6787 deletions
  1. +3069
    -3065
      build/macosx/platform_specific_code/juce_mac_Windowing.cpp
  2. +2
    -2
      extras/the jucer/src/model/jucer_JucerDocument.cpp
  3. +4
    -0
      src/juce_appframework/gui/components/controls/juce_Slider.cpp
  4. +3720
    -3720
      src/juce_appframework/gui/components/juce_Component.cpp

+ 3069
- 3065
build/macosx/platform_specific_code/juce_mac_Windowing.cpp
File diff suppressed because it is too large
View File


+ 2
- 2
extras/the jucer/src/model/jucer_JucerDocument.cpp View File

@@ -445,7 +445,7 @@ const String JucerDocument::saveDocument (const File& file)
String templateH, templateCpp;
if (! findTemplateFiles (templateH, templateCpp))
return TRANS("Couldn't find the required Jucer template files - make sure the template files directory is set up correctly in the preferences box.");
return TRANS("Couldn't find the required Jucer template files...\n\nMake sure the template files directory is set up correctly in the preferences box.");
const bool ok = writeCodeFiles (hFile, cppFile, templateH, templateCpp);
TestComponent::reloadAll();
@@ -608,7 +608,7 @@ void JucerDocument::getPreviewFiles (String& h, String& cpp)
{
if (! findTemplateFiles (h, cpp))
{
h = cpp = TRANS("Couldn't find the required Jucer template files - make sure the template files directory is set up correctly in the preferences box.");
h = cpp = TRANS("Couldn't find the required Jucer template files...\n\nMake sure the template files directory is set up correctly in the preferences box.");
}
else
{


+ 4
- 0
src/juce_appframework/gui/components/controls/juce_Slider.cpp View File

@@ -638,6 +638,10 @@ void Slider::labelTextChanged (Label* label)
setValue (newValue, true, true);
sendDragEnd();
}
else
{
updateText();
}
}
void Slider::buttonClicked (Button* button)


+ 3720
- 3720
src/juce_appframework/gui/components/juce_Component.cpp
File diff suppressed because it is too large
View File


Loading…
Cancel
Save