Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/EionRobb/skype4pidgin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'PurpleSkypeAccountViewController.m')
-rw-r--r--PurpleSkypeAccountViewController.m53
1 files changed, 0 insertions, 53 deletions
diff --git a/PurpleSkypeAccountViewController.m b/PurpleSkypeAccountViewController.m
deleted file mode 100644
index 96c87fb..0000000
--- a/PurpleSkypeAccountViewController.m
+++ /dev/null
@@ -1,53 +0,0 @@
-//
-// PurpleSkypeAccountViewController.m
-// Adium
-//
-// Created by Eion Robb on 14/10/07.
-//
-
-#import "PurpleSkypeAccountViewController.h"
-#import "PurpleSkypeAccount.h"
-
-@implementation PurpleSkypeAccountViewController
-
-- (NSView *)privacyView{
- return nil;
-}
-
-- (NSString *)nibName{
- return @"PurpleSkypeAccountView";
-}
-
-#ifndef SKYPENET
-- (NSView *)setupView {
- return nil;
-}
-#endif
-
-//Configure our controls
-- (void)configureForAccount:(AIAccount *)inAccount
-{
- [super configureForAccount:inAccount];
-
- [checkBox_skypeOutOnline setState:[[account preferenceForKey:KEY_SKYPE_SHOW_SKYPEOUT group:GROUP_ACCOUNT_STATUS] boolValue]];
- [checkBox_skypeSyncOffline setState:[[account preferenceForKey:KEY_SKYPE_SYNC_OFFLINE group:GROUP_ACCOUNT_STATUS] boolValue]];
- //[checkBox_skypeCheckUpdates setState:[[account preferenceForKey:KEY_SKYPE_CHECK_FOR_UPDATES group:GROUP_ACCOUNG_STATUS] boolValue]];
- [checkBox_autoStartSkype setState:[[account preferenceForKey:KEY_SKYPE_AUTOSTART group:GROUP_ACCOUNT_STATUS] boolValue]];
-}
-
-//Save controls
-- (void)saveConfiguration
-{
- [super saveConfiguration];
-
- [account setPreference:[NSNumber numberWithBool:[checkBox_skypeOutOnline state]]
- forKey:KEY_SKYPE_SHOW_SKYPEOUT group:GROUP_ACCOUNT_STATUS];
- [account setPreference:[NSNumber numberWithBool:[checkBox_skypeSyncOffline state]]
- forKey:KEY_SKYPE_SYNC_OFFLINE group:GROUP_ACCOUNT_STATUS];
- //[account setPreference:[NSNumber numberWithBool:[checkBox_skypeCheckUpdates state]]
- // forKey:KEY_SKYPE_CHECK_FOR_UPDATES group:GROUP_ACCOUNT_STATUS];
- [account setPreference:[NSNumber numberWithBool:[checkBox_autoStartSkype state]]
- forKey:KEY_SKYPE_AUTOSTART group:GROUP_ACCOUNT_STATUS];
-}
-
-@end