diff --git a/ChangeLog b/ChangeLog index e02b23709..25a23783b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Mon Oct 26 13:20:00 1998 Richard Frith-Macdonald + + * Tools/gpbs.m: Changed cStringNoCopy to cString. + Sat Oct 17 08:30:00 1998 Richard Frith-Macdonald * NSImage.m: removed erroneous attempt to set nil in image dictionary. diff --git a/Tools/gpbs.m b/Tools/gpbs.m index cd07d631c..9e1d1b09e 100644 --- a/Tools/gpbs.m +++ b/Tools/gpbs.m @@ -595,7 +595,7 @@ NSMutableDictionary* pasteboards = nil; } if (verbose) { printf("get data for type '%s' version %d\n", - [type cStringNoCopy], e ? [e refNum] : -1); + [type cString], e ? [e refNum] : -1); } if (e) { PasteboardData* d = [e itemForType: type]; @@ -678,7 +678,7 @@ NSMutableDictionary* pasteboards = nil; if (verbose) { printf("set data for type '%s' version %d\n", - [type cStringNoCopy], count); + [type cString], count); } e = [self entryByCount: count]; if (e) {