mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-05-06 09:50:42 +00:00
Don't use cStringNoCopy
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@3118 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
7b617e62a2
commit
2fa149743a
2 changed files with 6 additions and 2 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
Mon Oct 26 13:20:00 1998 Richard Frith-Macdonald <richard@brainstorm.co.uk>
|
||||||
|
|
||||||
|
* Tools/gpbs.m: Changed cStringNoCopy to cString.
|
||||||
|
|
||||||
Sat Oct 17 08:30:00 1998 Richard Frith-Macdonald <richard@brainstorm.co.uk>
|
Sat Oct 17 08:30:00 1998 Richard Frith-Macdonald <richard@brainstorm.co.uk>
|
||||||
|
|
||||||
* NSImage.m: removed erroneous attempt to set nil in image dictionary.
|
* NSImage.m: removed erroneous attempt to set nil in image dictionary.
|
||||||
|
|
|
@ -595,7 +595,7 @@ NSMutableDictionary* pasteboards = nil;
|
||||||
}
|
}
|
||||||
if (verbose) {
|
if (verbose) {
|
||||||
printf("get data for type '%s' version %d\n",
|
printf("get data for type '%s' version %d\n",
|
||||||
[type cStringNoCopy], e ? [e refNum] : -1);
|
[type cString], e ? [e refNum] : -1);
|
||||||
}
|
}
|
||||||
if (e) {
|
if (e) {
|
||||||
PasteboardData* d = [e itemForType: type];
|
PasteboardData* d = [e itemForType: type];
|
||||||
|
@ -678,7 +678,7 @@ NSMutableDictionary* pasteboards = nil;
|
||||||
|
|
||||||
if (verbose) {
|
if (verbose) {
|
||||||
printf("set data for type '%s' version %d\n",
|
printf("set data for type '%s' version %d\n",
|
||||||
[type cStringNoCopy], count);
|
[type cString], count);
|
||||||
}
|
}
|
||||||
e = [self entryByCount: count];
|
e = [self entryByCount: count];
|
||||||
if (e) {
|
if (e) {
|
||||||
|
|
Loading…
Reference in a new issue