mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
Rename all o- files to o_.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@1613 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
f72deb165b
commit
7f3c9b5be7
6 changed files with 9 additions and 9 deletions
|
@ -82,8 +82,8 @@ struct _o_list_enumerator
|
|||
|
||||
/** Basics **/
|
||||
|
||||
#include <gnustep/base/o_list-bas.h>
|
||||
#include <gnustep/base/o_list-cbs.h>
|
||||
#include <gnustep/base/o_list_bas.h>
|
||||
#include <gnustep/base/o_list_cbs.h>
|
||||
|
||||
/** Creating **/
|
||||
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
/**** Included Headers *******************************************************/
|
||||
|
||||
#include <gnustep/base/callbacks.h>
|
||||
#include <gnustep/base/o-@YY@.h>
|
||||
#include <gnustep/base/o_@YY@.h>
|
||||
|
||||
/**** Type, Constant, and Macro Definitions **********************************/
|
||||
|
||||
|
|
|
@ -190,12 +190,12 @@ BOOL NSDecrementExtraRefCountWasZero (id anObject)
|
|||
struct objc_protocol_list* proto_list;
|
||||
|
||||
for (proto_list = ((struct objc_class*)self)->class_pointer->protocols;
|
||||
proto_list; proto_list = proto_list_>next)
|
||||
proto_list; proto_list = proto_list->next)
|
||||
{
|
||||
for (i=0; i < proto_list_>count; i++)
|
||||
for (i=0; i < proto_list->count; i++)
|
||||
{
|
||||
/* xxx We should add conformsToProtocol to Protocol class. */
|
||||
if ([proto_list_>list[i] conformsTo: aProtocol])
|
||||
if ([proto_list->list[i] conformsTo: aProtocol])
|
||||
return YES;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -301,7 +301,7 @@ handle_printf_atsign (FILE *stream,
|
|||
{
|
||||
#if HAVE_VSPRINTF
|
||||
#define BUFFER_EXTRA 1024
|
||||
const char *format_cp = [format cStringNoCopy]);
|
||||
const char *format_cp = [format cStringNoCopy];
|
||||
int format_len = strlen (format_cp);
|
||||
char buf[format_len + BUFFER_EXTRA]; /* xxx horrible disgusting, fix this! */
|
||||
int printed_len;
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
#include <Foundation/NSZone.h>
|
||||
#include <Foundation/NSString.h>
|
||||
#include <gnustep/base/numbers.h>
|
||||
#include <gnustep/base/o-@XX@.h>
|
||||
#include <gnustep/base/o_@XX@.h>
|
||||
|
||||
/**** Type, Constant, and Macro Definitions **********************************/
|
||||
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
/**** Included Headers *******************************************************/
|
||||
|
||||
#include <gnustep/base/callbacks.h>
|
||||
#include <gnustep/base/o-@YY@.h>
|
||||
#include <gnustep/base/o_@YY@.h>
|
||||
|
||||
/**** Type, Constant, and Macro Definitions **********************************/
|
||||
|
||||
|
|
Loading…
Reference in a new issue