]> err.no Git - sope/commitdiff
fixed warnings that occured during Xcode compile
authorznek <znek@e4a50df8-12e2-0310-a44c-efbce7f8a7e3>
Tue, 4 Jan 2005 17:24:13 +0000 (17:24 +0000)
committerznek <znek@e4a50df8-12e2-0310-a44c-efbce7f8a7e3>
Tue, 4 Jan 2005 17:24:13 +0000 (17:24 +0000)
git-svn-id: http://svn.opengroupware.org/SOPE/trunk@484 e4a50df8-12e2-0310-a44c-efbce7f8a7e3

sope-appserver/SoOFS/ChangeLog
sope-appserver/SoOFS/OFSWebMethod.m
sope-appserver/SoOFS/OFSWebMethodRenderer.m
sope-appserver/SoOFS/SoOFS.xcode/project.pbxproj
sope-appserver/SoOFS/Version
sope-appserver/SoOFS/common.h

index 4df314eb04f5809a2e236e29255b3dca98f523d4..a80b11d577392b40ebde4e25381167fdcd822db8 100644 (file)
@@ -1,5 +1,9 @@
 2005-01-04  Marcus Mueller  <znek@mulle-kybernetik.com>
 
+       * OFSWebMethodRenderer.m, OFSWebMethod.m, common.h: removed warnings
+         that occured during Xcode compile by explicitly declaring used
+         private interfaces (v4.5.14)
+
        * v4.5.13
 
        * SoOFS.xcode: new product
index eacb2012d2b15f9ff14f68e4c1ac59a275bada0a..d0adfe8549cfdef9733eb25f61957a985557ee66 100644 (file)
@@ -20,9 +20,6 @@
 */
 
 #include "OFSWebMethod.h"
-#ifdef COMPILE_FOR_GSTEP_MAKE
-#  include "WOContext+private.h" // required for page rendering
-#endif
 #include <NGObjWeb/WEClientCapabilities.h>
 #include <NGObjWeb/WOResourceManager.h>
 #include <NGObjWeb/WOSession.h>
index c9dc6699cd9b4c745330778602791d65ef57ea8b..13ec99bad98d28b91566ab1167b9a25aafe4d989 100644 (file)
@@ -21,9 +21,6 @@
 
 #include "OFSWebMethodRenderer.h"
 #include "OFSWebMethod.h"
-#ifdef COMPILE_FOR_GSTEP_MAKE
-#  include "WOContext+private.h" // required for page rendering
-#endif
 #include <NGObjWeb/WOResponse.h>
 #include "common.h"
 
index 65bc3c54cd68445c11c8824023286d64e42351eb..d0b92e2ca0d3836e21da6a34f1844c7c7a345c8a 100644 (file)
                        );
                        buildSettings = {
                                DYLIB_COMPATIBILITY_VERSION = 1;
-                               DYLIB_CURRENT_VERSION = 4.5.13;
+                               DYLIB_CURRENT_VERSION = 4.5.14;
                                FRAMEWORK_SEARCH_PATHS = "$(LOCAL_LIBRARY_DIR)/Frameworks";
                                FRAMEWORK_VERSION = A;
                                GCC_PRECOMPILE_PREFIX_HEADER = YES;
index 36c1074d67afe2bdaebb02aee0b2a2160f8b9d89..a61800193508eae2e91f495b3d1b106b17416b41 100644 (file)
@@ -1,3 +1,3 @@
 # version file
 
-SUBMINOR_VERSION:=13
+SUBMINOR_VERSION:=14
index 7db4ec0cc4cb107934f009131434694d84721c1d..cf06fdf45f5e41ecb55c2b1808ad9ac02e6392dc 100644 (file)
 #include <SoObjects/SoUser.h>
 #include <SoObjects/WOContext+SoObjects.h>
 #include <SoObjects/NSException+HTTP.h>
+#ifdef COMPILE_FOR_GSTEP_MAKE
+#  include "WOContext+private.h" // required for page rendering
+#else
+/* Xcode can't reference the private header, so as a workaround we declare all
+   private methods used here */
+#  include <NGObjWeb/WOContext.h>
+@interface WOContext(UsedPrivates)
+- (void)enterComponent:(WOComponent *)_component content:(WOElement *)_content;
+- (void)leaveComponent:(WOComponent *)_component;
+- (void)setPage:(WOComponent *)_page;
+@end
+#endif
 
-@interface NSObject(LastException)
+@interface WOContext(LastException)
 - (NSException *)lastException;
 @end