@@ -44,11 +44,11 @@ #if defined(OF_AMIGAOS_M68K) || defined(OF_MINT) /* amiga-gcc and freemint-gcc do not have trunc() */ # define trunc(x) ((int64_t)(x)) #endif -@interface OFDatePlaceholder: OFDate +@interface OFPlaceholderDate: OFDate @end @interface OFConcreteDate: OFDate { OFTimeInterval _seconds; @@ -263,11 +263,11 @@ @implementation OFDateSingleton OF_SINGLETON_METHODS @end -@implementation OFDatePlaceholder +@implementation OFPlaceholderDate #ifdef __clang__ /* We intentionally don't call into super, so silence the warning. */ # pragma clang diagnostic push # pragma clang diagnostic ignored "-Wunknown-pragmas" # pragma clang diagnostic ignored "-Wobjc-designated-initializers" @@ -346,11 +346,11 @@ #endif if (self != [OFDate class]) return; - object_setClass((id)&placeholder, [OFDatePlaceholder class]); + object_setClass((id)&placeholder, [OFPlaceholderDate class]); #if (!defined(HAVE_GMTIME_R) || !defined(HAVE_LOCALTIME_R)) && \ defined(OF_HAVE_THREADS) mutex = [[OFMutex alloc] init]; atexit(releaseMutex);