- Timestamp:
- Jun 22, 2008, 9:46:20 PM (17 years ago)
- Location:
- trunk/nom
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/nom/class_c/nomcls.c
r357 r369 163 163 164 164 /** 165 Function which implements the nom GetCreatedClassName() method of NOMClass.165 Function which implements the nomQueryCreatedClassName() method of NOMClass. 166 166 */ 167 NOM_Scope CORBA_string NOMLINK impl_NOMClass_nom GetCreatedClassName(NOMClass* nomSelf, CORBA_Environment *ev)167 NOM_Scope CORBA_string NOMLINK impl_NOMClass_nomQueryCreatedClassName(NOMClass* nomSelf, CORBA_Environment *ev) 168 168 { 169 169 NOMClassPriv* ncp; -
trunk/nom/idl/nomcls.idl
r294 r369 76 76 This method is usually not overriden. 77 77 78 \sa nom GetClassName()78 \sa nomQueryClassName() 79 79 */ 80 string nom GetCreatedClassName();80 string nomQueryCreatedClassName(); 81 81 82 82 /** -
trunk/nom/src/nomdebug.c
r357 r369 67 67 g_error("The object used to call the method %s is not a valid NOM object. ", chrMethodName); 68 68 else 69 g_error("The object for which the method %s should be called is not valid for this method.\nThe object must be some instance of class %s (or of a subclass) but is a %s.", chrMethodName, NOMClass_nom GetCreatedClassName(nomClass, NULL),69 g_error("The object for which the method %s should be called is not valid for this method.\nThe object must be some instance of class %s (or of a subclass) but is a %s.", chrMethodName, NOMClass_nomQueryCreatedClassName(nomClass, NULL), 70 70 NOMObject_nomQueryClassName(nomObject, NULL)); 71 71 }
Note:
See TracChangeset
for help on using the changeset viewer.