Overview
| Comment: | Fix ObjC++. |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
c8a9dd6194d139a54a54219184fcce80 |
| User & Date: | js on 2011-01-31 18:53:55 |
| Other Links: | manifest | tags |
Context
|
2011-01-31
| ||
| 21:58 | Fix missing spaces when using objfw-config --all. (check-in: a94bef49d7 user: js tags: trunk) | |
| 18:53 | Fix ObjC++. (check-in: c8a9dd6194 user: js tags: trunk) | |
|
2011-01-30
| ||
| 12:00 | {} is not required for doxygen anymore. (check-in: be0af07922 user: js tags: trunk) | |
Changes
Modified src/OFExceptions.h from [5e9c974d2d] to [65b9bf22dd].
| ︙ | ︙ | |||
1194 1195 1196 1197 1198 1199 1200 |
@interface OFUnboundNamespaceException: OFException
{
OFString *ns;
OFString *prefix;
}
#ifdef OF_HAVE_PROPERTIES
| | | 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 |
@interface OFUnboundNamespaceException: OFException
{
OFString *ns;
OFString *prefix;
}
#ifdef OF_HAVE_PROPERTIES
@property (readonly, nonatomic, getter=namespace) OFString *ns;
@property (readonly, nonatomic) OFString *prefix;
#endif
/**
* \param class_ The class of the object which caused the exception
* \param ns The namespace which is unbound
* \return A new unbound namespace exception
|
| ︙ | ︙ |
Modified src/OFXMLAttribute.h from [c2a1816b86] to [dc66324635].
| ︙ | ︙ | |||
27 28 29 30 31 32 33 | OFString *name; OFString *ns; OFString *stringValue; } #ifdef OF_HAVE_PROPERTIES @property (readonly, retain) OFString *name; | | | 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | OFString *name; OFString *ns; OFString *stringValue; } #ifdef OF_HAVE_PROPERTIES @property (readonly, retain) OFString *name; @property (readonly, retain, getter=namespace) OFString *ns; @property (readonly, retain) OFString *stringValue; #endif /** * \param name The name of the attribute * \param ns The namespace of the attribute * \param value The string value of the attribute |
| ︙ | ︙ |
Modified src/OFXMLElement.h from [73ac364f4c] to [cc4813c83c].
| ︙ | ︙ | |||
37 38 39 40 41 42 43 | OFString *characters; OFString *cdata; OFMutableString *comment; } #ifdef OF_HAVE_PROPERTIES @property (readonly, copy) OFString *name; | | | 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 | OFString *characters; OFString *cdata; OFMutableString *comment; } #ifdef OF_HAVE_PROPERTIES @property (readonly, copy) OFString *name; @property (readonly, copy, getter=namespace) OFString *ns; @property (copy) OFString *defaultNamespace; @property (readonly, copy) OFArray *attributes; @property (readonly, copy) OFArray *children; #endif /** * \param name The name for the element |
| ︙ | ︙ |