зеркало из https://github.com/mozilla/gecko-dev.git
Update pref panels so exported symbols are unique. follows apple's guidelines.
This commit is contained in:
Родитель
e8be494fce
Коммит
8d1fcff6ba
|
@ -2460,7 +2460,7 @@
|
|||
<key>CFBundleIconFile</key>
|
||||
<string>Privacy.tiff</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>Chimera.PrivacyPrefPane</string>
|
||||
<string>org.mozilla.chimera.preference.privacy</string>
|
||||
<key>CFBundleInfoDictionaryVersion</key>
|
||||
<string>6.0</string>
|
||||
<key>CFBundleName</key>
|
||||
|
@ -2476,7 +2476,7 @@
|
|||
<key>NSMainNibFile</key>
|
||||
<string>Privacy</string>
|
||||
<key>NSPrincipalClass</key>
|
||||
<string>PrivacyPane</string>
|
||||
<string>OrgMozillaChimeraPreferencePrivacy</string>
|
||||
</dict>
|
||||
</plist>
|
||||
";
|
||||
|
@ -2821,7 +2821,7 @@
|
|||
<key>CFBundleIconFile</key>
|
||||
<string>Personal.tiff</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>Chimera.PersonalPrefPane</string>
|
||||
<string>org.mozilla.chimera.preference.personal</string>
|
||||
<key>CFBundleInfoDictionaryVersion</key>
|
||||
<string>6.0</string>
|
||||
<key>CFBundleName</key>
|
||||
|
@ -2839,7 +2839,7 @@
|
|||
<key>NSPrefPaneIconFIle</key>
|
||||
<string>Personal.tiff</string>
|
||||
<key>NSPrincipalClass</key>
|
||||
<string>PersonalPane</string>
|
||||
<string>OrgMozillaChimeraPreferencePersonal</string>
|
||||
</dict>
|
||||
</plist>
|
||||
";
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
( Chimera.SitesPrefPane,
|
||||
Chimera.BrowsingPrefPane,
|
||||
Chimera.PersonalPrefPane,
|
||||
org.mozilla.chimera.preference.personal,
|
||||
Chimera.HelpersPrefPane,
|
||||
Chimera.PrivacyPrefPane,
|
||||
org.mozilla.chimera.preference.privacy,
|
||||
Chimera.SecurityPrefPane
|
||||
)
|
||||
|
|
|
@ -2,11 +2,11 @@
|
|||
{
|
||||
identifier = chimera;
|
||||
panes = (
|
||||
Chimera.SitesPrefPane,
|
||||
Chimera.SitesPrefPane,
|
||||
Chimera.BrowsingPrefPane,
|
||||
Chimera.PersonalPrefPane,
|
||||
org.mozilla.chimera.preference.personal,
|
||||
Chimera.HelpersPrefPane,
|
||||
Chimera.PrivacyPrefPane,
|
||||
org.mozilla.chimera.preference.privacy,
|
||||
Chimera.SecurityPrefPane,
|
||||
Chimera.AdvancedPrefPane
|
||||
);
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#import <Cocoa/Cocoa.h>
|
||||
#import <PreferencePanes/NSPreferencePane.h>
|
||||
|
||||
@interface PersonalPane : NSPreferencePane
|
||||
@interface OrgMozillaChimeraPreferencePersonal : NSPreferencePane
|
||||
{
|
||||
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#import "PersonalPane.h"
|
||||
|
||||
@implementation PersonalPane
|
||||
@implementation OrgMozillaChimeraPreferencePersonal
|
||||
|
||||
|
||||
- (id) initWithBundle:(NSBundle *) bundle {
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#import <Cocoa/Cocoa.h>
|
||||
#import <PreferencePanes/NSPreferencePane.h>
|
||||
|
||||
@interface PrivacyPane : NSPreferencePane
|
||||
@interface OrgMozillaChimeraPreferencePrivacy : NSPreferencePane
|
||||
{
|
||||
IBOutlet id mCookies;
|
||||
IBOutlet NSButton* mPromptForCookie;
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
#include "nsCCookieManager.h"
|
||||
#include "nsICacheService.h"
|
||||
|
||||
@implementation PrivacyPane
|
||||
@implementation OrgMozillaChimeraPreferencePrivacy
|
||||
|
||||
- (void) dealloc
|
||||
{
|
||||
|
|
|
@ -2460,7 +2460,7 @@
|
|||
<key>CFBundleIconFile</key>
|
||||
<string>Privacy.tiff</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>Chimera.PrivacyPrefPane</string>
|
||||
<string>org.mozilla.chimera.preference.privacy</string>
|
||||
<key>CFBundleInfoDictionaryVersion</key>
|
||||
<string>6.0</string>
|
||||
<key>CFBundleName</key>
|
||||
|
@ -2476,7 +2476,7 @@
|
|||
<key>NSMainNibFile</key>
|
||||
<string>Privacy</string>
|
||||
<key>NSPrincipalClass</key>
|
||||
<string>PrivacyPane</string>
|
||||
<string>OrgMozillaChimeraPreferencePrivacy</string>
|
||||
</dict>
|
||||
</plist>
|
||||
";
|
||||
|
@ -2821,7 +2821,7 @@
|
|||
<key>CFBundleIconFile</key>
|
||||
<string>Personal.tiff</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>Chimera.PersonalPrefPane</string>
|
||||
<string>org.mozilla.chimera.preference.personal</string>
|
||||
<key>CFBundleInfoDictionaryVersion</key>
|
||||
<string>6.0</string>
|
||||
<key>CFBundleName</key>
|
||||
|
@ -2839,7 +2839,7 @@
|
|||
<key>NSPrefPaneIconFIle</key>
|
||||
<string>Personal.tiff</string>
|
||||
<key>NSPrincipalClass</key>
|
||||
<string>PersonalPane</string>
|
||||
<string>OrgMozillaChimeraPreferencePersonal</string>
|
||||
</dict>
|
||||
</plist>
|
||||
";
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
( Chimera.SitesPrefPane,
|
||||
Chimera.BrowsingPrefPane,
|
||||
Chimera.PersonalPrefPane,
|
||||
org.mozilla.chimera.preference.personal,
|
||||
Chimera.HelpersPrefPane,
|
||||
Chimera.PrivacyPrefPane,
|
||||
org.mozilla.chimera.preference.privacy,
|
||||
Chimera.SecurityPrefPane
|
||||
)
|
||||
|
|
|
@ -2,11 +2,11 @@
|
|||
{
|
||||
identifier = chimera;
|
||||
panes = (
|
||||
Chimera.SitesPrefPane,
|
||||
Chimera.SitesPrefPane,
|
||||
Chimera.BrowsingPrefPane,
|
||||
Chimera.PersonalPrefPane,
|
||||
org.mozilla.chimera.preference.personal,
|
||||
Chimera.HelpersPrefPane,
|
||||
Chimera.PrivacyPrefPane,
|
||||
org.mozilla.chimera.preference.privacy,
|
||||
Chimera.SecurityPrefPane,
|
||||
Chimera.AdvancedPrefPane
|
||||
);
|
||||
|
|
|
@ -2460,7 +2460,7 @@
|
|||
<key>CFBundleIconFile</key>
|
||||
<string>Privacy.tiff</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>Chimera.PrivacyPrefPane</string>
|
||||
<string>org.mozilla.chimera.preference.privacy</string>
|
||||
<key>CFBundleInfoDictionaryVersion</key>
|
||||
<string>6.0</string>
|
||||
<key>CFBundleName</key>
|
||||
|
@ -2476,7 +2476,7 @@
|
|||
<key>NSMainNibFile</key>
|
||||
<string>Privacy</string>
|
||||
<key>NSPrincipalClass</key>
|
||||
<string>PrivacyPane</string>
|
||||
<string>OrgMozillaChimeraPreferencePrivacy</string>
|
||||
</dict>
|
||||
</plist>
|
||||
";
|
||||
|
@ -2821,7 +2821,7 @@
|
|||
<key>CFBundleIconFile</key>
|
||||
<string>Personal.tiff</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>Chimera.PersonalPrefPane</string>
|
||||
<string>org.mozilla.chimera.preference.personal</string>
|
||||
<key>CFBundleInfoDictionaryVersion</key>
|
||||
<string>6.0</string>
|
||||
<key>CFBundleName</key>
|
||||
|
@ -2839,7 +2839,7 @@
|
|||
<key>NSPrefPaneIconFIle</key>
|
||||
<string>Personal.tiff</string>
|
||||
<key>NSPrincipalClass</key>
|
||||
<string>PersonalPane</string>
|
||||
<string>OrgMozillaChimeraPreferencePersonal</string>
|
||||
</dict>
|
||||
</plist>
|
||||
";
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
( Chimera.SitesPrefPane,
|
||||
Chimera.BrowsingPrefPane,
|
||||
Chimera.PersonalPrefPane,
|
||||
org.mozilla.chimera.preference.personal,
|
||||
Chimera.HelpersPrefPane,
|
||||
Chimera.PrivacyPrefPane,
|
||||
org.mozilla.chimera.preference.privacy,
|
||||
Chimera.SecurityPrefPane
|
||||
)
|
||||
|
|
|
@ -2,11 +2,11 @@
|
|||
{
|
||||
identifier = chimera;
|
||||
panes = (
|
||||
Chimera.SitesPrefPane,
|
||||
Chimera.SitesPrefPane,
|
||||
Chimera.BrowsingPrefPane,
|
||||
Chimera.PersonalPrefPane,
|
||||
org.mozilla.chimera.preference.personal,
|
||||
Chimera.HelpersPrefPane,
|
||||
Chimera.PrivacyPrefPane,
|
||||
org.mozilla.chimera.preference.privacy,
|
||||
Chimera.SecurityPrefPane,
|
||||
Chimera.AdvancedPrefPane
|
||||
);
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#import <Cocoa/Cocoa.h>
|
||||
#import <PreferencePanes/NSPreferencePane.h>
|
||||
|
||||
@interface PersonalPane : NSPreferencePane
|
||||
@interface OrgMozillaChimeraPreferencePersonal : NSPreferencePane
|
||||
{
|
||||
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#import "PersonalPane.h"
|
||||
|
||||
@implementation PersonalPane
|
||||
@implementation OrgMozillaChimeraPreferencePersonal
|
||||
|
||||
|
||||
- (id) initWithBundle:(NSBundle *) bundle {
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#import <Cocoa/Cocoa.h>
|
||||
#import <PreferencePanes/NSPreferencePane.h>
|
||||
|
||||
@interface PrivacyPane : NSPreferencePane
|
||||
@interface OrgMozillaChimeraPreferencePrivacy : NSPreferencePane
|
||||
{
|
||||
IBOutlet id mCookies;
|
||||
IBOutlet NSButton* mPromptForCookie;
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
#include "nsCCookieManager.h"
|
||||
#include "nsICacheService.h"
|
||||
|
||||
@implementation PrivacyPane
|
||||
@implementation OrgMozillaChimeraPreferencePrivacy
|
||||
|
||||
- (void) dealloc
|
||||
{
|
||||
|
|
|
@ -2460,7 +2460,7 @@
|
|||
<key>CFBundleIconFile</key>
|
||||
<string>Privacy.tiff</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>Chimera.PrivacyPrefPane</string>
|
||||
<string>org.mozilla.chimera.preference.privacy</string>
|
||||
<key>CFBundleInfoDictionaryVersion</key>
|
||||
<string>6.0</string>
|
||||
<key>CFBundleName</key>
|
||||
|
@ -2476,7 +2476,7 @@
|
|||
<key>NSMainNibFile</key>
|
||||
<string>Privacy</string>
|
||||
<key>NSPrincipalClass</key>
|
||||
<string>PrivacyPane</string>
|
||||
<string>OrgMozillaChimeraPreferencePrivacy</string>
|
||||
</dict>
|
||||
</plist>
|
||||
";
|
||||
|
@ -2821,7 +2821,7 @@
|
|||
<key>CFBundleIconFile</key>
|
||||
<string>Personal.tiff</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>Chimera.PersonalPrefPane</string>
|
||||
<string>org.mozilla.chimera.preference.personal</string>
|
||||
<key>CFBundleInfoDictionaryVersion</key>
|
||||
<string>6.0</string>
|
||||
<key>CFBundleName</key>
|
||||
|
@ -2839,7 +2839,7 @@
|
|||
<key>NSPrefPaneIconFIle</key>
|
||||
<string>Personal.tiff</string>
|
||||
<key>NSPrincipalClass</key>
|
||||
<string>PersonalPane</string>
|
||||
<string>OrgMozillaChimeraPreferencePersonal</string>
|
||||
</dict>
|
||||
</plist>
|
||||
";
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
( Chimera.SitesPrefPane,
|
||||
Chimera.BrowsingPrefPane,
|
||||
Chimera.PersonalPrefPane,
|
||||
org.mozilla.chimera.preference.personal,
|
||||
Chimera.HelpersPrefPane,
|
||||
Chimera.PrivacyPrefPane,
|
||||
org.mozilla.chimera.preference.privacy,
|
||||
Chimera.SecurityPrefPane
|
||||
)
|
||||
|
|
|
@ -2,11 +2,11 @@
|
|||
{
|
||||
identifier = chimera;
|
||||
panes = (
|
||||
Chimera.SitesPrefPane,
|
||||
Chimera.SitesPrefPane,
|
||||
Chimera.BrowsingPrefPane,
|
||||
Chimera.PersonalPrefPane,
|
||||
org.mozilla.chimera.preference.personal,
|
||||
Chimera.HelpersPrefPane,
|
||||
Chimera.PrivacyPrefPane,
|
||||
org.mozilla.chimera.preference.privacy,
|
||||
Chimera.SecurityPrefPane,
|
||||
Chimera.AdvancedPrefPane
|
||||
);
|
||||
|
|
Загрузка…
Ссылка в новой задаче