mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-22 13:10:59 +00:00
Do not initialize a string constant with another string constant or it breaks GCC build as is. Better proposals to ensure the exact same string pointer is used welcome.
This commit is contained in:
parent
78e6ea6b8a
commit
5627b69f1a
2 changed files with 16 additions and 11 deletions
|
@ -1,3 +1,8 @@
|
|||
2017-07-25 Riccardo Mottola <rm@gnu.org>
|
||||
|
||||
* Source/externs.m
|
||||
Do not initialize a string constant with another string constant or it breaks GCC build as is. Better proposals to ensure the exact same string pointer is used welcome.
|
||||
|
||||
2017-07-25 Daniel Ferreira <dtf@stanford.edu>
|
||||
|
||||
* Headers/AppKit/NSAttributedString.h
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
External data
|
||||
|
||||
Copyright (C) 1997-2016 Free Software Foundation, Inc.
|
||||
Copyright (C) 1997-2017 Free Software Foundation, Inc.
|
||||
|
||||
Author: Scott Christley <scottc@net-community.com>
|
||||
Date: August 1997
|
||||
|
@ -267,34 +267,34 @@ NSString *NSImageRepRegistryChangedNotification =
|
|||
|
||||
// Pasteboard Type Globals
|
||||
NSString *const NSPasteboardTypeString = @"NSStringPboardType";
|
||||
NSString *const NSStringPboardType = NSPasteboardTypeString;
|
||||
NSString *const NSStringPboardType = @"NSStringPboardType";
|
||||
|
||||
NSString *const NSPasteboardTypeColor = @"NSColorPboardType";
|
||||
NSString *const NSColorPboardType = NSPasteboardTypeColor;
|
||||
NSString *const NSColorPboardType = @"NSColorPboardType";
|
||||
|
||||
NSString *const NSPasteboardTypeFont = @"NSFontPboardType";
|
||||
NSString *const NSFontPboardType = NSPasteboardTypeFont;
|
||||
NSString *const NSFontPboardType = @"NSFontPboardType";
|
||||
|
||||
NSString *const NSPasteboardTypeRuler = @"NSRulerPboardType";
|
||||
NSString *const NSRulerPboardType = NSPasteboardTypeRuler;
|
||||
NSString *const NSRulerPboardType = @"NSRulerPboardType";
|
||||
|
||||
NSString *const NSPasteboardTypeTabularText = @"NSTabularTextPboardType";
|
||||
NSString *const NSTabularTextPboardType = NSPasteboardTypeTabularText;
|
||||
NSString *const NSTabularTextPboardType = @"NSTabularTextPboardType";
|
||||
|
||||
NSString *const NSPasteboardTypeRTF = @"NSRTFPboardType";
|
||||
NSString *const NSRTFPboardType = NSPasteboardTypeRTF;
|
||||
NSString *const NSRTFPboardType = @"NSRTFPboardType";
|
||||
|
||||
NSString *const NSPasteboardTypeRTFD = @"NSRTFDPboardType";
|
||||
NSString *const NSRTFDPboardType = NSPasteboardTypeRTFD;
|
||||
NSString *const NSRTFDPboardType = @"NSRTFDPboardType";
|
||||
|
||||
NSString *const NSPasteboardTypeTIFF = @"NSTIFFPboardType";
|
||||
NSString *const NSTIFFPboardType = NSPasteboardTypeTIFF;
|
||||
NSString *const NSTIFFPboardType = @"NSTIFFPboardType";
|
||||
|
||||
NSString *const NSPasteboardTypePDF = @"NSPDFPboardType";
|
||||
NSString *const NSPDFPboardType = NSPasteboardTypePDF;
|
||||
NSString *const NSPDFPboardType = @"NSPDFPboardType";
|
||||
|
||||
NSString *const NSPasteboardTypeHTML = @"NSHTMLPboardType";
|
||||
NSString *const NSHTMLPboardType = NSPasteboardTypeHTML;
|
||||
NSString *const NSHTMLPboardType = @"NSHTMLPboardType";
|
||||
|
||||
NSString *NSPasteboardTypePNG = @"NSPasteboardTypePNG";
|
||||
NSString *NSPasteboardTypeSound = @"NSPasteboardTypeSound";
|
||||
|
|
Loading…
Reference in a new issue