mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-22 13:10:59 +00:00
Fix issues pointed out by Fred. More fixes to come.
This commit is contained in:
parent
4d87b8e97a
commit
66ea79f256
4 changed files with 16 additions and 16 deletions
|
@ -9,7 +9,7 @@
|
|||
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 of the License, or (at your option) any later version.
|
||||
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
|
||||
|
@ -35,25 +35,25 @@ extern "C" {
|
|||
#endif
|
||||
|
||||
// All of the AppKit errors in the NSCocoaErrorDomain.
|
||||
|
||||
|
||||
enum
|
||||
{
|
||||
NSFontAssetDownloadError = 66304,
|
||||
NSFontAssetDownloadError = 66304,
|
||||
NSFontErrorMinimum = 66304,
|
||||
NSFontErrorMaximum = 66335,
|
||||
NSServiceApplicationNotFoundError = 66560,
|
||||
NSServiceApplicationLaunchFailedError = 66561,
|
||||
NSServiceRequestTimedOutError = 66562,
|
||||
NSServiceInvalidPasteboardDataError = 66563,
|
||||
NSServiceMalformedServiceDictionaryError = 66564,
|
||||
NSServiceMiscellaneousError = 66800,
|
||||
NSServiceApplicationNotFoundError = 66560,
|
||||
NSServiceApplicationLaunchFailedError = 66561,
|
||||
NSServiceRequestTimedOutError = 66562,
|
||||
NSServiceInvalidPasteboardDataError = 66563,
|
||||
NSServiceMalformedServiceDictionaryError = 66564,
|
||||
NSServiceMiscellaneousError = 66800,
|
||||
NSServiceErrorMinimum = 66560,
|
||||
NSServiceErrorMaximum = 66817,
|
||||
NSSharingServiceNotConfiguredError = 67072,
|
||||
NSSharingServiceNotConfiguredError = 67072,
|
||||
NSSharingServiceErrorMinimum = 67072,
|
||||
NSSharingServiceErrorMaximum = 67327,
|
||||
NSTextReadInapplicableDocumentTypeError = 65806,
|
||||
NSTextWriteInapplicableDocumentTypeError = 66062,
|
||||
NSTextWriteInapplicableDocumentTypeError = 66062,
|
||||
NSTextReadWriteErrorMinimum = 65792,
|
||||
NSTextReadWriteErrorMaximum = 66303,
|
||||
NSWorkspaceAuthorizationInvalidError = 67328,
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
|
||||
#import <Foundation/NSObject.h>
|
||||
|
||||
#if OS_API_VERSION(MAC_OS_X_VERSION_10_0, GS_API_LATEST)
|
||||
#if OS_API_VERSION(MAC_OS_X_VERSION_10_13, GS_API_LATEST)
|
||||
|
||||
#if defined(__cplusplus)
|
||||
extern "C" {
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
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 of the License, or (at your option) any later version.
|
||||
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
|
||||
|
@ -22,7 +22,7 @@
|
|||
Boston, MA 02110 USA.
|
||||
*/
|
||||
|
||||
#import <AppKit/NSFontAssetRequest.h>
|
||||
#import "AppKit/NSFontAssetRequest.h"
|
||||
|
||||
@implementation NSFontAssetRequest
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
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 of the License, or (at your option) any later version.
|
||||
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
|
||||
|
@ -22,7 +22,7 @@
|
|||
Boston, MA 02110 USA.
|
||||
*/
|
||||
|
||||
#import <AppKit/NSScrubber.h>
|
||||
#import "AppKit/NSScrubber.h"
|
||||
|
||||
@implementation NSScrubber
|
||||
|
||||
|
|
Loading…
Reference in a new issue