[GTK] Wrong signal name on emission in WebKitWindowProperties.cpp
authorcommit-queue@webkit.org <commit-queue@webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Fri, 24 Feb 2012 00:08:27 +0000 (00:08 +0000)
committercommit-queue@webkit.org <commit-queue@webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Fri, 24 Feb 2012 00:08:27 +0000 (00:08 +0000)
https://bugs.webkit.org/show_bug.cgi?id=79352

Patch by Mario Sanchez Prada <msanchez@igalia.com> on 2012-02-23
Reviewed by Philippe Normand.

Emit the signal 'resizable' instead of 'resizable-visible'.

* UIProcess/API/gtk/WebKitWindowProperties.cpp:
(webkitWindowPropertiesSetResizable): Use right signal name.

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

Source/WebKit2/ChangeLog
Source/WebKit2/UIProcess/API/gtk/WebKitWindowProperties.cpp

index 4591055..0e40fa4 100644 (file)
@@ -1,3 +1,15 @@
+2012-02-23  Mario Sanchez Prada  <msanchez@igalia.com>
+
+        [GTK] Wrong signal name on emission in WebKitWindowProperties.cpp
+        https://bugs.webkit.org/show_bug.cgi?id=79352
+
+        Reviewed by Philippe Normand.
+
+        Emit the signal 'resizable' instead of 'resizable-visible'.
+
+        * UIProcess/API/gtk/WebKitWindowProperties.cpp:
+        (webkitWindowPropertiesSetResizable): Use right signal name.
+
 2012-02-23  Anders Carlsson  <andersca@apple.com>
 
         Flush layer changes after layout when resizing web page
index 4138902..242b753 100644 (file)
@@ -377,7 +377,7 @@ void webkitWindowPropertiesSetResizable(WebKitWindowProperties* windowProperties
     if (windowProperties->priv->resizable == resizable)
         return;
     windowProperties->priv->resizable = resizable;
-    g_object_notify(G_OBJECT(windowProperties), "resizable-visible");
+    g_object_notify(G_OBJECT(windowProperties), "resizable");
 }
 
 void webkitWindowPropertiesSetFullscreen(WebKitWindowProperties* windowProperties, bool fullscreen)