Changeset 161186 in webkit


Ignore:
Timestamp:
Dec 31, 2013 5:08:13 PM (10 years ago)
Author:
b.long@cablelabs.com
Message:

[Gtk] WebKitWebInspector has build warnings due to uninitialized didChangeAttachedWidth member
https://bugs.webkit.org/show_bug.cgi?id=126353

Reviewed by Martin Robinson.

  • UIProcess/API/gtk/WebKitWebInspector.cpp:

(webkitWebInspectorCreate): Initialize didChangeAttachedWidth to null.

Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r161182 r161186  
     12013-12-31  Brendan Long  <b.long@cablelabs.com>
     2
     3        [Gtk] WebKitWebInspector has build warnings due to uninitialized didChangeAttachedWidth member
     4        https://bugs.webkit.org/show_bug.cgi?id=126353
     5
     6        Reviewed by Martin Robinson.
     7
     8        * UIProcess/API/gtk/WebKitWebInspector.cpp:
     9        (webkitWebInspectorCreate): Initialize didChangeAttachedWidth to null.
     10
    1112013-12-30  Martin Robinson  <mrobinson@igalia.com>
    212
  • trunk/Source/WebKit2/UIProcess/API/gtk/WebKitWebInspector.cpp

    r160128 r161186  
    328328        attach,
    329329        detach,
    330         didChangeAttachedHeight
     330        didChangeAttachedHeight,
     331        nullptr // didChangeAttachedWidth
    331332    };
    332333    WKInspectorSetInspectorClientGtk(toAPI(webInspector), &wkInspectorClientGtk.base);
Note: See TracChangeset for help on using the changeset viewer.