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> <key>CFBundleSignature</key>
<string>????</string> <string>????</string>
<key>CFBundleVersion</key> <key>CFBundleVersion</key>
<string>14</string> <string>15</string>
<key>Fabric</key> <key>Fabric</key>
<dict> <dict>
<key>APIKey</key> <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 -(BOOL)tableView:(NSTableView *)tableView acceptDrop:(id<NSDraggingInfo>)info row:(NSInteger)row dropOperation:(NSTableViewDropOperation)dropOperation
{ {
if (row == self.selectedTimeZones.count) {
row--;
}
NSPasteboard *pBoard = [info draggingPasteboard]; NSPasteboard *pBoard = [info draggingPasteboard];
NSData *data = [pBoard dataForType:@"public.text"]; NSData *data = [pBoard dataForType:@"public.text"];

4
Clocker/main.m

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

Loading…
Cancel
Save