diff options
| author | jonas <jonas@3ad0048d-3df7-0310-abae-a5850022a9f2> | 2011-01-02 14:50:46 +0000 |
|---|---|---|
| committer | jonas <jonas@3ad0048d-3df7-0310-abae-a5850022a9f2> | 2011-01-02 14:50:46 +0000 |
| commit | 0dfba44e97597764c4493c0afbc928093e8bc3dd (patch) | |
| tree | 674d86e04cbfbff78bdf39f254941f2ddec70478 /packages/cocoaint/src/webkit/DOMHTMLMetaElement.inc | |
| parent | 6a7affca5153b5d4be003ff75c41ffdcae70b301 (diff) | |
| download | fpc-0dfba44e97597764c4493c0afbc928093e8bc3dd.tar.gz | |
* changed syntax of external objcclasses (see wiki/FPC_PasCocoa). Another
change is that it is now also allowed to specify an external name for
formal external class definitions, but if they are later mixed with
regular class definitions the external names have to match.
o because the "external" status of methods is now set while parsing the
class rather than afterwards, some procdir compatibility checks had to
be inlined because they only have to be performed for
* also adapted the syntax for external cppclasses in the same way
* fixed return type of NSObject.retainCount and NSObject.hash
(NSUInteger instead of cint)
* moved "patches" directory from cocoaint/src to cocoaint/utils/cocoa-skel
so they are used by the conversion script when re-parsing the headers
* updated Objective-C header parser script to
o use the new external class syntax
o not write inheritance information for root classes (NSObject, NSProxy)
o use internal translation tables for some conflicting method names that
are named specially in objcbase.pp
and updated parsed headers
* fixed rtl/inc/objcbase.pp and tests to conform to the new external class
syntax
git-svn-id: http://svn.freepascal.org/svn/fpc/trunk@16684 3ad0048d-3df7-0310-abae-a5850022a9f2
Diffstat (limited to 'packages/cocoaint/src/webkit/DOMHTMLMetaElement.inc')
| -rw-r--r-- | packages/cocoaint/src/webkit/DOMHTMLMetaElement.inc | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/packages/cocoaint/src/webkit/DOMHTMLMetaElement.inc b/packages/cocoaint/src/webkit/DOMHTMLMetaElement.inc index 478ac6a61c..142f7219dd 100644 --- a/packages/cocoaint/src/webkit/DOMHTMLMetaElement.inc +++ b/packages/cocoaint/src/webkit/DOMHTMLMetaElement.inc @@ -1,5 +1,5 @@ { Parsed from Webkit.framework DOMHTMLMetaElement.h } -{ Version: 2.1.2 - Wed Dec 8 10:06:27 CET 2010 } +{ Version: 2.1.4 - Sun Jan 2 15:08:41 CET 2011 } {$ifdef TYPES} @@ -42,11 +42,9 @@ {$define DOMHTMLMETAELEMENT_PAS_C} { DOMHTMLMetaElement } - DOMHTMLMetaElement = objcclass(DOMHTMLElement) + DOMHTMLMetaElement = objcclass external (DOMHTMLElement) public - class function alloc: DOMHTMLMetaElement; message 'alloc'; - procedure setContent (newValue: NSString); message 'setContent:'; function content: NSString; message 'content'; procedure setHttpEquiv (newValue: NSString); message 'setHttpEquiv:'; @@ -55,7 +53,7 @@ function name: NSString; message 'name'; procedure setScheme (newValue: NSString); message 'setScheme:'; function scheme: NSString; message 'scheme'; - end; external; + end; {$endif} {$endif} |
