mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-22 07:10:46 +00:00
Minor updates
This commit is contained in:
parent
94eecbabc0
commit
a7a7a1e691
3 changed files with 32 additions and 4 deletions
3
MISSING
3
MISSING
|
@ -9,9 +9,6 @@ MISSING HEADERS ( * = difficult, - = quick, + = placeholder, x = won't do )
|
|||
> NSItemProvider.h +
|
||||
> NSMenuToolbarItem.h -
|
||||
> NSOpenGLLayer.h +
|
||||
> NSTableCellView.h *
|
||||
> NSTableRowView.h *
|
||||
> NSTableViewRowAction.h *
|
||||
> NSTypesetter.h +
|
||||
> NSUserActivity.h -
|
||||
> NSWindowTab.h +
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/** <title>NSTableView</title>
|
||||
em/** <title>NSTableView</title>
|
||||
|
||||
Copyright (C) 2000 Free Software Foundation, Inc.
|
||||
|
||||
|
@ -70,6 +70,7 @@
|
|||
#import "GSBindingHelpers.h"
|
||||
|
||||
#include <math.h>
|
||||
|
||||
static NSNotificationCenter *nc = nil;
|
||||
|
||||
static const int currentVersion = 5;
|
||||
|
|
30
Source/NSTableViewRowAction.m
Normal file
30
Source/NSTableViewRowAction.m
Normal file
|
@ -0,0 +1,30 @@
|
|||
/* Implementation of class NSTableViewRowAction
|
||||
Copyright (C) 2022 Free Software Foundation, Inc.
|
||||
|
||||
By: Gregory John Casamento
|
||||
Date: 04-09-2022
|
||||
|
||||
This file is part of the GNUstep Library.
|
||||
|
||||
This library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Lesser General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2.1 of the License, or (at your option) any later version.
|
||||
|
||||
This library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with this library; if not, write to the Free
|
||||
Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
||||
Boston, MA 02110 USA.
|
||||
*/
|
||||
|
||||
#import "AppKit/NSTableViewRowAction.h"
|
||||
|
||||
@implementation NSTableViewRowAction
|
||||
|
||||
@end
|
||||
|
Loading…
Reference in a new issue