Skip to content
Snippets Groups Projects
Commit 4198197b authored by Alexandre Lision's avatar Alexandre Lision
Browse files

preference: enable auto startup by default

Ring is registered in startup items when the wizard creates the RING account

Refs #73111

Change-Id: I1fa3ec065e8fcdfd9e1edbe9bdf6457a7f592c14
parent 66643433
Branches
Tags
No related merge requests found
...@@ -102,6 +102,19 @@ ...@@ -102,6 +102,19 @@
[self setCallback]; [self setCallback];
[self performSelector:@selector(saveAccount) withObject:nil afterDelay:1]; [self performSelector:@selector(saveAccount) withObject:nil afterDelay:1];
[self registerAutoStartup];
}
/**
* Enable launch at startup by default
*/
- (void) registerAutoStartup
{
LSSharedFileListRef loginItemsRef = LSSharedFileListCreate(NULL, kLSSharedFileListSessionLoginItems, NULL);
if (loginItemsRef == nil) return;
CFURLRef appUrl = (CFURLRef)[NSURL fileURLWithPath:[[NSBundle mainBundle] bundlePath]];
LSSharedFileListItemRef itemRef = LSSharedFileListInsertItemURL(loginItemsRef, kLSSharedFileListItemLast, NULL, NULL, appUrl, NULL, NULL);
if (itemRef) CFRelease(itemRef);
} }
- (void) saveAccount - (void) saveAccount
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment