Code review comment for lp://qastaging/~bratsche/appmenu-gtk/check-for-null-before-set-local

Revision history for this message
Ted Gould (ted) wrote :

On Mon, 2010-08-02 at 15:33 +0000, Cody Russell wrote:
> - app_menu_bridge_set_show_local (context->bridge, TRUE);
> + {
> + if (context->bridge != NULL
> + {
> + app_menu_bridge_set_show_local (context->bridge, TRUE);
> + }
> + }

I think you're missing a ")"

« Back to merge proposal