View | Details | Raw Unified | Return to bug 30765
Collapse All | Expand All

(-)libreoffice-4.4.1.2/shell/source/unix/misc/gnome-open-url.sh (-2 / +2 lines)
Lines 1-6 Link Here
1
#!/bin/sh
1
#!/bin/sh
2
2
3
# use xdg-open or gnome-open if available, falling back to our own open-url
3
# use xdg-open if available, falling back to our own open-url
4
xdg-open "$1" 2>/dev/null || gnome-open "$1" 2>/dev/null || `dirname "$0"`/open-url "$1" 2>/dev/null
4
xdg-open "$1" 2>/dev/null || `dirname "$0"`/open-url "$1" 2>/dev/null
5
5
6
exit 0
6
exit 0
(-)libreoffice-4.4.1.2/shell/source/unix/misc/senddoc.sh (-2 lines)
Lines 389-396 Link Here
389
            MAILER=${DESKTOP_LAUNCH}
389
            MAILER=${DESKTOP_LAUNCH}
390
        elif [ -n "$KDE_FULL_SESSION" -a -x /usr/bin/kde-open ] ; then
390
        elif [ -n "$KDE_FULL_SESSION" -a -x /usr/bin/kde-open ] ; then
391
            MAILER=/usr/bin/kde-open
391
            MAILER=/usr/bin/kde-open
392
        elif [ -n "$GNOME_DESKTOP_SESSION_ID" -a -x /usr/bin/gnome-open ] ; then
393
            MAILER=/usr/bin/gnome-open
394
        elif [ -x /usr/bin/xdg-open ] ; then
392
        elif [ -x /usr/bin/xdg-open ] ; then
395
            MAILER=/usr/bin/xdg-open
393
            MAILER=/usr/bin/xdg-open
396
        else
394
        else

Return to bug 30765