mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-11 23:54:18 +00:00
Projucer: Correct case for some iOS identifiers
This commit is contained in:
parent
73a4730b27
commit
df35930a4f
2 changed files with 9 additions and 9 deletions
|
|
@ -71,9 +71,9 @@ public:
|
|||
customXcodeResourceFoldersValue (settings, Ids::customXcodeResourceFolders, project.getUndoManagerFor (settings)),
|
||||
customXcassetsFolderValue (settings, Ids::customXcassetsFolder, project.getUndoManagerFor (settings)),
|
||||
microphonePermissionNeededValue (settings, Ids::microphonePermissionNeeded, project.getUndoManagerFor (settings)),
|
||||
uiFileSharingEnabledValue (settings, Ids::uiFileSharingEnabled, project.getUndoManagerFor (settings)),
|
||||
uiSupportsDocumentBrowserValue (settings, Ids::uiSupportsDocumentBrowser, project.getUndoManagerFor (settings)),
|
||||
uiStatusBarHiddenValue (settings, Ids::uiStatusBarHidden, project.getUndoManagerFor (settings)),
|
||||
uiFileSharingEnabledValue (settings, Ids::UIFileSharingEnabled, project.getUndoManagerFor (settings)),
|
||||
uiSupportsDocumentBrowserValue (settings, Ids::UISupportsDocumentBrowser, project.getUndoManagerFor (settings)),
|
||||
uiStatusBarHiddenValue (settings, Ids::UIStatusBarHidden, project.getUndoManagerFor (settings)),
|
||||
documentExtensionsValue (settings, Ids::documentExtensions, project.getUndoManagerFor (settings)),
|
||||
iosInAppPurchasesValue (settings, Ids::iosInAppPurchases, project.getUndoManagerFor (settings)),
|
||||
iosBackgroundAudioValue (settings, Ids::iosBackgroundAudio, project.getUndoManagerFor (settings)),
|
||||
|
|
@ -1332,13 +1332,13 @@ public:
|
|||
}
|
||||
}
|
||||
|
||||
if (owner.settings [Ids::uiFileSharingEnabled] && type != AudioUnitv3PlugIn)
|
||||
if (owner.settings [Ids::UIFileSharingEnabled] && type != AudioUnitv3PlugIn)
|
||||
addPlistDictionaryKeyBool (dict, "UIFileSharingEnabled", true);
|
||||
|
||||
if (owner.settings [Ids::uiSupportsDocumentBrowser])
|
||||
if (owner.settings [Ids::UISupportsDocumentBrowser])
|
||||
addPlistDictionaryKeyBool (dict, "UISupportsDocumentBrowser", true);
|
||||
|
||||
if (owner.settings [Ids::uiStatusBarHidden] && type != AudioUnitv3PlugIn)
|
||||
if (owner.settings [Ids::UIStatusBarHidden] && type != AudioUnitv3PlugIn)
|
||||
addPlistDictionaryKeyBool (dict, "UIStatusBarHidden", true);
|
||||
|
||||
if (owner.iOS)
|
||||
|
|
|
|||
|
|
@ -100,9 +100,9 @@ namespace Ids
|
|||
DECLARE_ID (customPList);
|
||||
DECLARE_ID (pListPrefixHeader);
|
||||
DECLARE_ID (pListPreprocess);
|
||||
DECLARE_ID (uiFileSharingEnabled);
|
||||
DECLARE_ID (uiSupportsDocumentBrowser);
|
||||
DECLARE_ID (uiStatusBarHidden);
|
||||
DECLARE_ID (UIFileSharingEnabled);
|
||||
DECLARE_ID (UISupportsDocumentBrowser);
|
||||
DECLARE_ID (UIStatusBarHidden);
|
||||
DECLARE_ID (documentExtensions);
|
||||
DECLARE_ID (keepCustomXcodeSchemes);
|
||||
DECLARE_ID (useHeaderMap);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue