mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-26 14:22:01 +00:00
b1f6fec604
Bug 157520 -- dragging a bookmark into a tab no longer leaves things in a bad state. Bug 154906 -- dragging links onto tabs works now. Changes include adding the bookmarks outline, and the boomarks toolbar as recipients of NSStringPboardType data, and replacing calls to [NSPasteboard propertyListForType], which tries to parse a url string into a property list, with [NSPasteboard stringForType].
25 lines
442 B
Objective-C
25 lines
442 B
Objective-C
//
|
|
// CHHistoryDataSource.h
|
|
// Chimera
|
|
//
|
|
// Created by Ben Goodger on Sun Apr 28 2002.
|
|
// Copyright (c) 2001 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
#import "CHRDFOutlineViewDataSource.h"
|
|
|
|
@class BrowserWindowController;
|
|
|
|
@interface CHHistoryDataSource : CHRDFOutlineViewDataSource
|
|
{
|
|
|
|
IBOutlet BrowserWindowController* mBrowserWindowController;
|
|
|
|
}
|
|
|
|
-(IBAction)openHistoryItem: (id)aSender;
|
|
|
|
@end
|