Browse Source

Re-saved all projects

tags/2021-05-28
ed 7 years ago
parent
commit
f47d8d2425
6 changed files with 12 additions and 12 deletions
  1. +2
    -2
      extras/AudioPluginHost/JuceLibraryCode/BinaryData.cpp
  2. +2
    -2
      extras/AudioPluginHost/JuceLibraryCode/BinaryData.h
  3. +2
    -2
      extras/NetworkGraphicsDemo/JuceLibraryCode/BinaryData.cpp
  4. +2
    -2
      extras/NetworkGraphicsDemo/JuceLibraryCode/BinaryData.h
  5. +2
    -2
      extras/Projucer/JuceLibraryCode/BinaryData.cpp
  6. +2
    -2
      extras/Projucer/JuceLibraryCode/BinaryData.h

+ 2
- 2
extras/AudioPluginHost/JuceLibraryCode/BinaryData.cpp View File

@@ -657,7 +657,7 @@ static const unsigned char temp_binary_data_0[] =
const char* JUCEAppIcon_png = (const char*) temp_binary_data_0;
const char* getNamedResource (const char* resourceNameUTF8, int& numBytes) noexcept
const char* getNamedResource (const char* resourceNameUTF8, int& numBytes)
{
unsigned int hash = 0;
if (resourceNameUTF8 != 0)
@@ -684,7 +684,7 @@ const char* originalFilenames[] =
"JUCEAppIcon.png"
};
const char* getNamedResourceOriginalFilename (const char* resourceNameUTF8) noexcept
const char* getNamedResourceOriginalFilename (const char* resourceNameUTF8)
{
for (unsigned int i = 0; i < (sizeof (namedResourceList) / sizeof (namedResourceList[0])); ++i)
{


+ 2
- 2
extras/AudioPluginHost/JuceLibraryCode/BinaryData.h View File

@@ -22,9 +22,9 @@ namespace BinaryData
// If you provide the name of one of the binary resource variables above, this function will
// return the corresponding data and its size (or a null pointer if the name isn't found).
const char* getNamedResource (const char* resourceNameUTF8, int& dataSizeInBytes) noexcept;
const char* getNamedResource (const char* resourceNameUTF8, int& dataSizeInBytes);
// If you provide the name of one of the binary resource variables above, this function will
// return the corresponding original, non-mangled filename (or a null pointer if the name isn't found).
const char* getNamedResourceOriginalFilename (const char* resourceNameUTF8) noexcept;
const char* getNamedResourceOriginalFilename (const char* resourceNameUTF8);
}

+ 2
- 2
extras/NetworkGraphicsDemo/JuceLibraryCode/BinaryData.cpp View File

@@ -657,7 +657,7 @@ static const unsigned char temp_binary_data_0[] =
const char* juce_icon_png = (const char*) temp_binary_data_0;
const char* getNamedResource (const char* resourceNameUTF8, int& numBytes) noexcept
const char* getNamedResource (const char* resourceNameUTF8, int& numBytes)
{
unsigned int hash = 0;
if (resourceNameUTF8 != 0)
@@ -684,7 +684,7 @@ const char* originalFilenames[] =
"juce_icon.png"
};
const char* getNamedResourceOriginalFilename (const char* resourceNameUTF8) noexcept
const char* getNamedResourceOriginalFilename (const char* resourceNameUTF8)
{
for (unsigned int i = 0; i < (sizeof (namedResourceList) / sizeof (namedResourceList[0])); ++i)
{


+ 2
- 2
extras/NetworkGraphicsDemo/JuceLibraryCode/BinaryData.h View File

@@ -22,9 +22,9 @@ namespace BinaryData
// If you provide the name of one of the binary resource variables above, this function will
// return the corresponding data and its size (or a null pointer if the name isn't found).
const char* getNamedResource (const char* resourceNameUTF8, int& dataSizeInBytes) noexcept;
const char* getNamedResource (const char* resourceNameUTF8, int& dataSizeInBytes);
// If you provide the name of one of the binary resource variables above, this function will
// return the corresponding original, non-mangled filename (or a null pointer if the name isn't found).
const char* getNamedResourceOriginalFilename (const char* resourceNameUTF8) noexcept;
const char* getNamedResourceOriginalFilename (const char* resourceNameUTF8);
}

+ 2
- 2
extras/Projucer/JuceLibraryCode/BinaryData.cpp View File

@@ -7583,7 +7583,7 @@ static const unsigned char temp_binary_data_60[] =
const char* RecentFilesMenuTemplate_nib = (const char*) temp_binary_data_60;
const char* getNamedResource (const char* resourceNameUTF8, int& numBytes) noexcept
const char* getNamedResource (const char* resourceNameUTF8, int& numBytes)
{
unsigned int hash = 0;
if (resourceNameUTF8 != 0)
@@ -7790,7 +7790,7 @@ const char* originalFilenames[] =
"RecentFilesMenuTemplate.nib"
};
const char* getNamedResourceOriginalFilename (const char* resourceNameUTF8) noexcept
const char* getNamedResourceOriginalFilename (const char* resourceNameUTF8)
{
for (unsigned int i = 0; i < (sizeof (namedResourceList) / sizeof (namedResourceList[0])); ++i)
{


+ 2
- 2
extras/Projucer/JuceLibraryCode/BinaryData.h View File

@@ -202,9 +202,9 @@ namespace BinaryData
// If you provide the name of one of the binary resource variables above, this function will
// return the corresponding data and its size (or a null pointer if the name isn't found).
const char* getNamedResource (const char* resourceNameUTF8, int& dataSizeInBytes) noexcept;
const char* getNamedResource (const char* resourceNameUTF8, int& dataSizeInBytes);
// If you provide the name of one of the binary resource variables above, this function will
// return the corresponding original, non-mangled filename (or a null pointer if the name isn't found).
const char* getNamedResourceOriginalFilename (const char* resourceNameUTF8) noexcept;
const char* getNamedResourceOriginalFilename (const char* resourceNameUTF8);
}

Loading…
Cancel
Save