https://bugzilla.xfce.org/show_bug.cgi?id=15553

            Bug ID: 15553
           Summary: xfce-desktop.c:1198:13: warning: this ‘if’ clause does
                    not guard... [-Wmisleading-indentation]
    Classification: Xfce Core
           Product: Xfdesktop
           Version: Unspecified
          Hardware: Other
                OS: Linux
            Status: NEW
          Severity: normal
          Priority: Medium
         Component: General
          Assignee: [email protected]
          Reporter: [email protected]
  Target Milestone: Xfce 4.14

Source code is

            /* no icons on the desktop, grab the focus and pop up the menu */
            if(!gtk_widget_has_grab(w))
                gtk_grab_add(w);

                xfce_desktop_popup_root_menu(desktop, button, evt->time);
                return TRUE;

maybe better code

            /* no icons on the desktop, grab the focus and pop up the menu */
            if(!gtk_widget_has_grab(w)) {
                gtk_grab_add(w);

                xfce_desktop_popup_root_menu(desktop, button, evt->time);
                return TRUE;
            }

-- 
You are receiving this mail because:
You are the assignee for the bug.
_______________________________________________
Xfce-bugs mailing list
[email protected]
https://mail.xfce.org/mailman/listinfo/xfce-bugs

Reply via email to