mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-12 00:50:40 +00:00
Add stub implementation for missing method
This commit is contained in:
parent
0df169ebf5
commit
d0159fa123
@ -55,7 +55,7 @@
|
||||
|
||||
- (id) init
|
||||
{
|
||||
if (self = [super init]) {
|
||||
if ((self = [super init])) {
|
||||
nsCOMPtr<nsIRDFContainer> ctr(do_CreateInstance("@mozilla.org/rdf/container;1"));
|
||||
NS_ADDREF(mContainer = ctr);
|
||||
|
||||
@ -127,6 +127,12 @@
|
||||
return NO;
|
||||
}
|
||||
|
||||
// XXX write me
|
||||
- (BOOL)outlineView: (NSOutlineView*) aOutlineView isItemExpandable: (id) aItem
|
||||
{
|
||||
return NO;
|
||||
}
|
||||
|
||||
- (id) outlineView: (NSOutlineView*) aOutlineView child: (int) aIndex
|
||||
ofItem: (id) aItem
|
||||
{
|
||||
|
@ -55,7 +55,7 @@
|
||||
|
||||
- (id) init
|
||||
{
|
||||
if (self = [super init]) {
|
||||
if ((self = [super init])) {
|
||||
nsCOMPtr<nsIRDFContainer> ctr(do_CreateInstance("@mozilla.org/rdf/container;1"));
|
||||
NS_ADDREF(mContainer = ctr);
|
||||
|
||||
@ -127,6 +127,12 @@
|
||||
return NO;
|
||||
}
|
||||
|
||||
// XXX write me
|
||||
- (BOOL)outlineView: (NSOutlineView*) aOutlineView isItemExpandable: (id) aItem
|
||||
{
|
||||
return NO;
|
||||
}
|
||||
|
||||
- (id) outlineView: (NSOutlineView*) aOutlineView child: (int) aIndex
|
||||
ofItem: (id) aItem
|
||||
{
|
||||
|
@ -55,7 +55,7 @@
|
||||
|
||||
- (id) init
|
||||
{
|
||||
if (self = [super init]) {
|
||||
if ((self = [super init])) {
|
||||
nsCOMPtr<nsIRDFContainer> ctr(do_CreateInstance("@mozilla.org/rdf/container;1"));
|
||||
NS_ADDREF(mContainer = ctr);
|
||||
|
||||
@ -127,6 +127,12 @@
|
||||
return NO;
|
||||
}
|
||||
|
||||
// XXX write me
|
||||
- (BOOL)outlineView: (NSOutlineView*) aOutlineView isItemExpandable: (id) aItem
|
||||
{
|
||||
return NO;
|
||||
}
|
||||
|
||||
- (id) outlineView: (NSOutlineView*) aOutlineView child: (int) aIndex
|
||||
ofItem: (id) aItem
|
||||
{
|
||||
|
@ -55,7 +55,7 @@
|
||||
|
||||
- (id) init
|
||||
{
|
||||
if (self = [super init]) {
|
||||
if ((self = [super init])) {
|
||||
nsCOMPtr<nsIRDFContainer> ctr(do_CreateInstance("@mozilla.org/rdf/container;1"));
|
||||
NS_ADDREF(mContainer = ctr);
|
||||
|
||||
@ -127,6 +127,12 @@
|
||||
return NO;
|
||||
}
|
||||
|
||||
// XXX write me
|
||||
- (BOOL)outlineView: (NSOutlineView*) aOutlineView isItemExpandable: (id) aItem
|
||||
{
|
||||
return NO;
|
||||
}
|
||||
|
||||
- (id) outlineView: (NSOutlineView*) aOutlineView child: (int) aIndex
|
||||
ofItem: (id) aItem
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user