Please review fix for following d.o.o bug :
   http://defect.opensolaris.org/bz/show_bug.cgi?id=5257

When clicking on the folder the contents should be diaplayed in a nautilus
window. This was not happening because of incorrect logic in if statement.

Pasted below is changes to ChangeLog and change to 
gnome-panel-07-restrict-app-launching.diff patch. Just required the removal of 
a 
single exclamation mark.


Index: ChangeLog
===================================================================
--- ChangeLog   (revision 16497)
+++ ChangeLog   (working copy)
@@ -1,3 +1,9 @@
+2008-11-24  Matt Keenan  <matt.keenan at sun.com>
+
+       * patches/gnome-panel-07-restrict-app-launching.diff: Fix doo bug #5257
+         clicking on a folder launcher on the panel should launch nautilus and
+         show folder contents. Typo in this patch caused this to never happen.
+
  2008-11-24  Laszlo (Laca) Peter  <laca at sun.com>

        * SUNWPython25-extra.spec: (new) Python 2.5 build of
Index: patches/gnome-panel-07-restrict-app-launching.diff
===================================================================
--- patches/gnome-panel-07-restrict-app-launching.diff  (revision 16497)
+++ patches/gnome-panel-07-restrict-app-launching.diff  (working copy)
@@ -439,7 +439,7 @@
        g_return_if_fail (launcher != NULL);
        g_return_if_fail (launcher->key_file != NULL);

-+    if (!panel_lockdown_is_forbidden_launcher (launcher))
++    if (panel_lockdown_is_forbidden_launcher (launcher))
  +        return;
  +
        /* FIXME panel_ditem_launch() should be enough for this! */

Reply via email to