Browse Source

Conflict resolution.

v1.2.4
Abhishek Banthia 9 years ago
parent
commit
06fc4c2eb3
  1. BIN
      Clocker.xcodeproj/project.xcworkspace/xcuserdata/abhishekbanthia.xcuserdatad/UserInterfaceState.xcuserstate
  2. 10
      Clocker/ApplicationDelegate.m
  3. 6
      Clocker/Clocker-Info.plist
  4. 4
      Clocker/PanelController.m

BIN
Clocker.xcodeproj/project.xcworkspace/xcuserdata/abhishekbanthia.xcuserdatad/UserInterfaceState.xcuserstate generated

Binary file not shown.

10
Clocker/ApplicationDelegate.m

@ -76,9 +76,8 @@ void *kContextActivePanel = &kContextActivePanel;
- (void)applicationDidFinishLaunching:(NSNotification *)notification
{
<<<<<<< HEAD
BOOL startedAtLogin = NO;
=======
NSNumber *opened = [[NSUserDefaults standardUserDefaults] objectForKey:@"noOfTimes"];
if (opened == nil)
{
@ -89,11 +88,6 @@ void *kContextActivePanel = &kContextActivePanel;
[[NSUserDefaults standardUserDefaults] setObject:noOfTime forKey:@"noOfTimes"];;
}
NSArray *defaultPreference = [[NSUserDefaults standardUserDefaults] objectForKey:CLDefaultPreferenceKey];
>>>>>>> master
NSArray *apps = [[NSWorkspace sharedWorkspace] runningApplications];
@ -182,7 +176,7 @@ void *kContextActivePanel = &kContextActivePanel;
NSNumber *showAppInForeground = [[NSUserDefaults standardUserDefaults] objectForKey:CLShowAppInForeground];
if (showAppInForeground == nil) {
[[NSUserDefaults standardUserDefaults] setObject:@1 forKey:CLShowAppInForeground];
[[NSUserDefaults standardUserDefaults] setObject:@0 forKey:CLShowAppInForeground];
}
NSNumber *startClockerAtLogin = [[NSUserDefaults standardUserDefaults] objectForKey:CLStartAtLogin];

6
Clocker/Clocker-Info.plist

@ -17,12 +17,8 @@
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<<<<<<< HEAD
<string>22</string>
=======
<string>17</string>
>>>>>>> master
<key>Fabric</key>
<key>Fabric</key>
<dict>
<key>APIKey</key>
<string>94088f95c41979e8019b67d5795f52bbbe7104d4</string>

4
Clocker/PanelController.m

@ -352,9 +352,6 @@ static PanelController *sharedPanel = nil;
}
}
<<<<<<< HEAD
=======
-(BOOL)tableView:(NSTableView *)tableView acceptDrop:(id<NSDraggingInfo>)info row:(NSInteger)row dropOperation:(NSTableViewDropOperation)dropOperation
{
if (row == self.defaultPreferences.count) {
@ -409,5 +406,4 @@ static PanelController *sharedPanel = nil;
}
>>>>>>> master
@end

Loading…
Cancel
Save