gecko-dev/camino/CHHistoryDataSource.h
sfraser%netscape.com b1f6fec604 Fixing various drag and drop bugs: 160215 -- dragging link into bookmarks sidebar panel, and into the personal toolbar now works.
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].
2002-07-31 02:39:11 +00:00

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