View Issue Details
| ID | Project | Category | View Status | Date Submitted | Last Update |
|---|---|---|---|---|---|
| 0002554 | SOGo | SOPE | public | 2013-12-18 06:21 | 2014-02-04 13:59 |
| Reporter | buzzdee | Assigned To | ludovic | ||
| Priority | normal | Severity | minor | Reproducibility | always |
| Status | closed | Resolution | fixed | ||
| Platform | amd64 | OS | OpenBSD | OS Version | 5.4-current |
| Product Version | 2.1.1b | ||||
| Target Version | 2.2.0 | Fixed in Version | 2.2.0 | ||
| Summary | 0002554: fix compilation warnings in sope-core/NGExtensions/EOExt | ||||
| Description | attached patch fixes the following warnings: EOFetchSpecification+plist.m:55:40: warning: 'EOSortOrdering' may not respond to 'initWithPropertyList:owner:' | ||||
| Tags | No tags attached. | ||||
|
fix-warnings-in-sope-core-NGExtensions-EOExt.diff (1,152 bytes)
$OpenBSD$
--- sope-core/NGExtensions/EOExt.subproj/EOFetchSpecification+plist.m.orig Tue Dec 17 07:29:48 2013
+++ sope-core/NGExtensions/EOExt.subproj/EOFetchSpecification+plist.m Tue Dec 17 07:30:14 2013
@@ -20,6 +20,7 @@
*/
#include <NGExtensions/EOFetchSpecification+plist.h>
+#include <NGExtensions/EOSortOrdering+plist.h>
#import <EOControl/EOControl.h>
#include "common.h"
$OpenBSD$
--- sope-core/NGExtensions/EOExt.subproj/EOKeyMapDataSource.m.orig Tue Dec 17 07:30:52 2013
+++ sope-core/NGExtensions/EOExt.subproj/EOKeyMapDataSource.m Tue Dec 17 07:32:43 2013
@@ -112,7 +112,7 @@
if ([obj isModified]) {
if (self->map) {
NSLog(@"%s: don't know how to back-map modified object: %@",
- _object);
+ __PRETTY_FUNCTION__, _object);
#if NeXT_Foundation_LIBRARY
[self doesNotRecognizeSelector:_cmd];
return nil; // keep compiler happy
@@ -265,7 +265,7 @@
NSAutoreleasePool *pool;
NSArray *a;
- pool = [[NSArray alloc] init];
+ pool = [[NSAutoreleasePool alloc] init];
a = [[NSArray alloc] initWithObjectsFromEnumerator:[self fetchEnumerator]];
[pool release];
return [a autorelease];
|
|
|
ping |
|
|
https://github.com/inverse-inc/sope/commit/427d4f9260dcb701e7ed5b94c2e6333fd726e9b9 |
|
| Date Modified | Username | Field | Change |
|---|---|---|---|
| 2013-12-18 06:21 | buzzdee | New Issue | |
| 2013-12-18 06:21 | buzzdee | File Added: fix-warnings-in-sope-core-NGExtensions-EOExt.diff | |
| 2014-01-15 18:29 | buzzdee | Note Added: 0006396 | |
| 2014-02-04 00:06 | ludovic | Target Version | => 2.2.0 |
| 2014-02-04 13:59 | ludovic | Note Added: 0006484 | |
| 2014-02-04 13:59 | ludovic | Status | new => closed |
| 2014-02-04 13:59 | ludovic | Assigned To | => ludovic |
| 2014-02-04 13:59 | ludovic | Resolution | open => fixed |
| 2014-02-04 13:59 | ludovic | Fixed in Version | => 2.2.0 |