[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.15-1-40151-g37bb677

cblu cblu at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 06:43:58 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 19b36482f7b382290e39404d44400c560ce53836
Author: cblu <cblu at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Sep 24 21:02:34 2002 +0000

    	Documentation for WebHTMLView
    
            * WebView.subproj/WebHTMLView.h:
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@2145 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index 4e2f1ce..4aed807 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,3 +1,9 @@
+2002-09-24  Chris Blumenberg  <cblu at apple.com>
+
+	Documentation for WebHTMLView
+
+        * WebView.subproj/WebHTMLView.h:
+
 2002-09-24  Richard Williamson   <rjw at apple.com>
 
         Documentation changes.  Removal of imports from
diff --git a/WebKit/ChangeLog-2002-12-03 b/WebKit/ChangeLog-2002-12-03
index 4e2f1ce..4aed807 100644
--- a/WebKit/ChangeLog-2002-12-03
+++ b/WebKit/ChangeLog-2002-12-03
@@ -1,3 +1,9 @@
+2002-09-24  Chris Blumenberg  <cblu at apple.com>
+
+	Documentation for WebHTMLView
+
+        * WebView.subproj/WebHTMLView.h:
+
 2002-09-24  Richard Williamson   <rjw at apple.com>
 
         Documentation changes.  Removal of imports from
diff --git a/WebKit/WebView.subproj/WebHTMLView.h b/WebKit/WebView.subproj/WebHTMLView.h
index bbdd539..4455dd8 100644
--- a/WebKit/WebView.subproj/WebHTMLView.h
+++ b/WebKit/WebView.subproj/WebHTMLView.h
@@ -15,6 +15,7 @@
 
 /*!
     @class WebHTMLView
+    @discussion A document view of WebView that displays HTML content.
 */
 @interface WebHTMLView : NSClipView <WebDocumentView, WebDocumentDragSettings, WebDocumentSearching, WebDocumentTextEncoding>
 {
@@ -24,42 +25,46 @@
 
 /*!
     @method setNeedsToApplyStyles:
-    @param flag
+    @abstract Sets flag to cause reapplication of style information.
+    @param flag YES to apply style information, NO to not apply style information.
 */
 - (void)setNeedsToApplyStyles: (BOOL)flag;
 
 /*!
     @method reapplyStyles
-    @discussion Reapplies style information to the document.  This should not be called directly,
+    @discussion Immediately causes reapplication of style information to the view.  This should not be called directly,
     instead call setNeedsToApplyStyles:.
 */
 - (void)reapplyStyles;
 
 /*!
     @method setContextMenusEnabled:
-    @param flag
+    @abstract Enables or disables contextual menus. 
+    @param flag YES to enable contextual menus, NO to disable contextual menus.
 */
 - (void)setContextMenusEnabled: (BOOL)flag;
 
 /*!
     @method contextMenusEnabled:
+    @result Returns YES if contextual menus are enabled, NO if they are not.
 */
 - (BOOL)contextMenusEnabled;
 
 /*!
     @method deselectText
+    @abstract Causes a text selection to lose its selection.
 */
 - (void)deselectText;
 
 /*!
     @method selectedAttributedText
-    @abstract Get an attributed string that represents the current selection.
+    @result Attributed string that represents the current selection.
 */
 - (NSAttributedString *)selectedAttributedText;
 
 /*!
     @method selectedText
-    @abstract Get an string that represents the current selection.
+    @result String that represents the current selection.
 */
 - (NSString *)selectedText;
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list