Title: [114238] trunk/Tools
Revision
114238
Author
commit-qu...@webkit.org
Date
2012-04-16 04:20:27 -0700 (Mon, 16 Apr 2012)

Log Message

[EFL] EWebLaucher : Fix wrong parameter order in function call for multiple windows.
https://bugs.webkit.org/show_bug.cgi?id=83862

Patch by Seokju Kwon <seokju.k...@samsung.com> on 2012-04-16
Reviewed by Kenneth Rohde Christiansen.

EWebLauncher creates multiple windows, like multiple tabs when pressing F9 key.
It doesn't work properly because of wrong parameter order in function call.

* EWebLauncher/main.c:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (114237 => 114238)


--- trunk/Tools/ChangeLog	2012-04-16 10:13:00 UTC (rev 114237)
+++ trunk/Tools/ChangeLog	2012-04-16 11:20:27 UTC (rev 114238)
@@ -1,3 +1,15 @@
+2012-04-16  Seokju Kwon  <seokju.k...@samsung.com>
+
+        [EFL] EWebLaucher : Fix wrong parameter order in function call for multiple windows.
+        https://bugs.webkit.org/show_bug.cgi?id=83862
+
+        Reviewed by Kenneth Rohde Christiansen.
+
+        EWebLauncher creates multiple windows, like multiple tabs when pressing F9 key.
+        It doesn't work properly because of wrong parameter order in function call.
+
+        * EWebLauncher/main.c:
+
 2012-04-16  Philippe Normand  <pnorm...@igalia.com>
 
         Unreviewed, GTK gardening.

Modified: trunk/Tools/EWebLauncher/main.c (114237 => 114238)


--- trunk/Tools/EWebLauncher/main.c	2012-04-16 10:13:00 UTC (rev 114237)
+++ trunk/Tools/EWebLauncher/main.c	2012-04-16 11:20:27 UTC (rev 114238)
@@ -526,8 +526,8 @@
         info("Create new window (F9) was pressed.\n");
         Eina_Rectangle geometry = {0, 0, 0, 0};
         browserCreate("http://www.google.com",
-                       app->theme, app->userAgent, geometry, app-> backingStore,
-                       NULL, app->isFlattening, 0, NULL);
+                       app->theme, app->userAgent, geometry, NULL,
+                       app->backingStore, app->isFlattening, 0, NULL);
     } else if (!strcmp(ev->key, "g") && ctrlPressed ) {
         Evas_Coord x, y, w, h;
         Evas_Object *frame = ewk_view_frame_main_get(obj);
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to