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. 4
      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)
{
@ -90,11 +89,6 @@ void *kContextActivePanel = &kContextActivePanel;
}
NSArray *defaultPreference = [[NSUserDefaults standardUserDefaults] objectForKey:CLDefaultPreferenceKey];
>>>>>>> master
NSArray *apps = [[NSWorkspace sharedWorkspace] runningApplications];
for (NSRunningApplication *app in apps)
@ -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];

4
Clocker/Clocker-Info.plist

@ -17,11 +17,7 @@
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<<<<<<< HEAD
<string>22</string>
=======
<string>17</string>
>>>>>>> master
<key>Fabric</key>
<dict>
<key>APIKey</key>

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