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

Introjucer: correctly setting the JucePlugin_ManufacturerEmail macro.

This commit is contained in:
jules 2014-04-05 14:53:32 +01:00
parent f5cafaebd4
commit 897c3c8044
6 changed files with 22 additions and 24 deletions

View file

@ -834,30 +834,30 @@ static const unsigned char temp_binary_data_14[] =
" //==============================================================================\r\n"
" APPCLASSNAME() {}\r\n"
"\r\n"
" const String getApplicationName() { return ProjectInfo::projectName; }\r\n"
" const String getApplicationVersion() { return ProjectInfo::versionString; }\r\n"
" bool moreThanOneInstanceAllowed() { return ALLOWMORETHANONEINSTANCE; }\r\n"
" const String getApplicationName() override { return ProjectInfo::projectName; }\r\n"
" const String getApplicationVersion() override { return ProjectInfo::versionString; }\r\n"
" bool moreThanOneInstanceAllowed() override { return ALLOWMORETHANONEINSTANCE; }\r\n"
"\r\n"
" //==============================================================================\r\n"
" void initialise (const String& commandLine)\r\n"
" void initialise (const String& commandLine) override\r\n"
" {\r\n"
" // Add your application's initialisation code here..\r\n"
" }\r\n"
"\r\n"
" void shutdown()\r\n"
" void shutdown() override\r\n"
" {\r\n"
" // Add your application's shutdown code here..\r\n"
" }\r\n"
"\r\n"
" //==============================================================================\r\n"
" void systemRequestedQuit()\r\n"
" void systemRequestedQuit() override\r\n"
" {\r\n"
" // This is called when the app is being asked to quit: you can ignore this\r\n"
" // request and let the app carry on running, or call quit() to allow the app to close.\r\n"
" quit();\r\n"
" }\r\n"
"\r\n"
" void anotherInstanceStarted (const String& commandLine)\r\n"
" void anotherInstanceStarted (const String& commandLine) override\r\n"
" {\r\n"
" // When another instance of the app is launched while this one is running,\r\n"
" // this method is invoked, and the commandLine parameter tells you what\r\n"
@ -893,19 +893,19 @@ static const unsigned char temp_binary_data_15[] =
" //==============================================================================\r\n"
" APPCLASSNAME() {}\r\n"
"\r\n"
" const String getApplicationName() { return ProjectInfo::projectName; }\r\n"
" const String getApplicationVersion() { return ProjectInfo::versionString; }\r\n"
" bool moreThanOneInstanceAllowed() { return ALLOWMORETHANONEINSTANCE; }\r\n"
" const String getApplicationName() override { return ProjectInfo::projectName; }\r\n"
" const String getApplicationVersion() override { return ProjectInfo::versionString; }\r\n"
" bool moreThanOneInstanceAllowed() override { return ALLOWMORETHANONEINSTANCE; }\r\n"
"\r\n"
" //==============================================================================\r\n"
" void initialise (const String& commandLine)\r\n"
" void initialise (const String& commandLine) override\r\n"
" {\r\n"
" // This method is where you should put your application's initialisation code..\r\n"
"\r\n"
" mainWindow = new MainWindow();\r\n"
" }\r\n"
"\r\n"
" void shutdown()\r\n"
" void shutdown() override\r\n"
" {\r\n"
" // Add your application's shutdown code here..\r\n"
"\r\n"
@ -913,14 +913,14 @@ static const unsigned char temp_binary_data_15[] =
" }\r\n"
"\r\n"
" //==============================================================================\r\n"
" void systemRequestedQuit()\r\n"
" void systemRequestedQuit() override\r\n"
" {\r\n"
" // This is called when the app is being asked to quit: you can ignore this\r\n"
" // request and let the app carry on running, or call quit() to allow the app to close.\r\n"
" quit();\r\n"
" }\r\n"
"\r\n"
" void anotherInstanceStarted (const String& commandLine)\r\n"
" void anotherInstanceStarted (const String& commandLine) override\r\n"
" {\r\n"
" // When another instance of the app is launched while this one is running,\r\n"
" // this method is invoked, and the commandLine parameter tells you what\r\n"
@ -1242,8 +1242,8 @@ const char* getNamedResource (const char* resourceNameUTF8, int& numBytes) throw
case 0x6fa10171: numBytes = 924; return jucer_ContentCompTemplate_h;
case 0x28d496ad: numBytes = 1143; return jucer_InlineComponentTemplate_h;
case 0x8905395b: numBytes = 470; return jucer_MainConsoleAppTemplate_cpp;
case 0x5e5ea047: numBytes = 1947; return jucer_MainTemplate_NoWindow_cpp;
case 0x400bc026: numBytes = 3613; return jucer_MainTemplate_Window_cpp;
case 0x5e5ea047: numBytes = 2010; return jucer_MainTemplate_NoWindow_cpp;
case 0x400bc026: numBytes = 3676; return jucer_MainTemplate_Window_cpp;
case 0xf4842835: numBytes = 1389; return jucer_NewComponentTemplate_cpp;
case 0xe7bf237a: numBytes = 648; return jucer_NewComponentTemplate_h;
case 0x02a2a077: numBytes = 262; return jucer_NewCppFileTemplate_cpp;