[Webkit-unassigned] [Bug 79352] New: [GTK] Wrong signal name on emission in WebKitWindowProperties.cpp

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Feb 23 02:25:25 PST 2012


https://bugs.webkit.org/show_bug.cgi?id=79352

           Summary: [GTK] Wrong signal name on emission in
                    WebKitWindowProperties.cpp
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: Unspecified
        OS/Version: Unspecified
            Status: NEW
          Keywords: Gtk
          Severity: Normal
          Priority: P2
         Component: WebKit Gtk
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: msanchez at igalia.com
                CC: cgarcia at igalia.com, pnormand at igalia.com


In WebKitWindowProperties::webkitWindowPropertiesSetResizable, we currently have this:

void webkitWindowPropertiesSetResizable(WebKitWindowProperties* windowProperties, bool resizable)
{
    if (windowProperties->priv->resizable == resizable)
        return;
    windowProperties->priv->resizable = resizable;
    g_object_notify(G_OBJECT(windowProperties), "resizable-visible");
}

...which is a mistake since the signal is called 'resizable', not 'resizable-visible'

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list