Browse Source

Updating Version and fix for drag-drop crash!

Localization
Abhishek Banthia 9 years ago
parent
commit
acae2632bb
  1. BIN
      Clocker.xcodeproj/project.xcworkspace/xcuserdata/abhishekbanthia.xcuserdatad/UserInterfaceState.xcuserstate
  2. 2
      Clocker/Clocker-Info.plist
  3. 4
      Clocker/PreferencesWindowController.m
  4. 4
      Clocker/main.m

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

Binary file not shown.

2
Clocker/Clocker-Info.plist

@ -19,7 +19,7 @@
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>14</string>
<string>15</string>
<key>Fabric</key>
<dict>
<key>APIKey</key>

4
Clocker/PreferencesWindowController.m

@ -359,6 +359,10 @@ static PreferencesWindowController *sharedPreferences = nil;
-(BOOL)tableView:(NSTableView *)tableView acceptDrop:(id<NSDraggingInfo>)info row:(NSInteger)row dropOperation:(NSTableViewDropOperation)dropOperation
{
if (row == self.selectedTimeZones.count) {
row--;
}
NSPasteboard *pBoard = [info draggingPasteboard];
NSData *data = [pBoard dataForType:@"public.text"];

4
Clocker/main.m

@ -2,8 +2,8 @@
// main.m
// Clocker
//
// Created by Vadim Shpakovski on 7/5/11.
// Copyright 2011 __MyCompanyName__. All rights reserved.
// Created by Abhishek Banthia.
// Copyright 2015. All rights reserved.
//
#import <Cocoa/Cocoa.h>

Loading…
Cancel
Save