[GTK] Refactor GTK's accessibilitity code to be more modular
authormario@webkit.org <mario@webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Mon, 23 Jan 2012 11:46:04 +0000 (11:46 +0000)
committermario@webkit.org <mario@webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Mon, 23 Jan 2012 11:46:04 +0000 (11:46 +0000)
https://bugs.webkit.org/show_bug.cgi?id=76783

Reviewed by Martin Robinson.

Fix typo in class struct (parent class field had the wrong type),
fix coding style issues and update date in headers.

* accessibility/gtk/WebKitAccessibleHyperlink.cpp:
* accessibility/gtk/WebKitAccessibleHyperlink.h:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@105608 268f45cc-cd09-0410-ab3c-d52691b4dbfc

Source/WebCore/ChangeLog
Source/WebCore/accessibility/gtk/WebKitAccessibleHyperlink.cpp
Source/WebCore/accessibility/gtk/WebKitAccessibleHyperlink.h

index 72bcd0f..0188aae 100644 (file)
@@ -5,6 +5,19 @@
 
         Reviewed by Martin Robinson.
 
+        Fix typo in class struct (parent class field had the wrong type),
+        fix coding style issues and update date in headers.
+
+        * accessibility/gtk/WebKitAccessibleHyperlink.cpp:
+        * accessibility/gtk/WebKitAccessibleHyperlink.h:
+
+2012-01-23  Mario Sanchez Prada  <msanchez@igalia.com>
+
+        [GTK] Refactor GTK's accessibilitity code to be more modular
+        https://bugs.webkit.org/show_bug.cgi?id=76783
+
+        Reviewed by Martin Robinson.
+
         Rename WebKitAccessible's public functions to follow WebKit's
         coding style and update callers.
 
index b4200bc..403d9d4 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2010 Igalia S.L.
+ * Copyright (C) 2010, 2011, 2012 Igalia S.L.
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Library General Public
index 82062f7..0682a25 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2010 Igalia S.L.
+ * Copyright (C) 2010, 2011, 2012 Igalia S.L.
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Library General Public
@@ -47,14 +47,14 @@ struct _WebKitAccessibleHyperlink {
 };
 
 struct _WebKitAccessibleHyperlinkClass {
-    AtkObjectClass parentClass;
+    AtkHyperlinkClass parentClass;
 };
 
 GType webkitAccessibleHyperlinkGetType(void) G_GNUC_CONST;
 
-WebKitAccessibleHyperlink* webkitAccessibleHyperlinkNew(AtkHyperlinkImpl* hyperlinkImpl);
+WebKitAccessibleHyperlink* webkitAccessibleHyperlinkNew(AtkHyperlinkImpl*);
 
-WebCore::AccessibilityObject* webkitAccessibleHyperlinkGetAccessibilityObject(WebKitAccessibleHyperlink* link);
+WebCore::AccessibilityObject* webkitAccessibleHyperlinkGetAccessibilityObject(WebKitAccessibleHyperlink*);
 
 G_END_DECLS