GNOME Bugzilla – Bug 678829
Bloatpad example application has "parse" action instead of "paste"
Last modified: 2012-07-11 11:25:41 UTC
Created attachment 217260 [details] [review] Renames the "parse" action to "paste" The Bloatpad example application for GtkApplication specifies an action for "Parse" in the XML for window actions but the code seems to be looking for "Paste".
Review of attachment 217260 [details] [review]: Other than the obvious mistake this is correct. Thanks. ::: examples/bloatpad.c @@ +156,3 @@ gtk_grid_attach (GTK_GRID (grid), scrolled, 0, 1, 1, 1); + if (file != NULL)gtk_application_add_accelerator() oops?
Oops, sorry, don't know how that got in there. Might have been a bit CTRL+V happy.
The following fix has been pushed: 0ddb502 Fix typo replacing action "Parse" with "Paste"
Created attachment 218536 [details] [review] Fix typo replacing action "Parse" with "Paste" The builder XML description has an action for "win.parse" but the application is looking for "win.paste". Rename the label to "_Paste" and the action to "win.paste" in the window action XML.