diff options
author | John Sullivan <sullivan@src.gnome.org> | 2001-04-26 20:28:34 +0000 |
---|---|---|
committer | John Sullivan <sullivan@src.gnome.org> | 2001-04-26 20:28:34 +0000 |
commit | e155bb32bea2ff97a2ce15e2345aaf9cd82422fd (patch) | |
tree | 7f14295c4661c83cc37e5cd0061f0da25073c794 /libnautilus-private/nautilus-program-choosing.c | |
parent | be549f3e2cce6ec5d6a159ecf902297c69191d29 (diff) | |
download | nautilus-e155bb32bea2ff97a2ce15e2345aaf9cd82422fd.tar.gz |
Moved over a few changes from the nautilus-1 branch.
I've reviewed all the changes in the branch ChangeLog now,
so I think we can kiss it goodbye.
* configure.in: Bumped a bunch of version numbers to match
branch. Robin may have to do some more bumping before
shipping 1.0.3.
* help/nautilus-user-manual/C/figures/custicon.png:
* help/nautilus-user-manual/C/figures/full.png:
* help/nautilus-user-manual/C/figures/part.png:
Smaller versions of screenshots which were too big to
fit in the Nautilus main panel, by Arlo. (For some reason
nautilus-quick-reference on HEAD had smaller figures than
on nautilus-1, but vice-versa for nautilus-user-manual.)
* src/nautilus-preferences-dialog.c:
* src/nautilus-shell-ui.xml:
* src/nautilus-window-menus.c:
(nautilus_window_initialize_menus_part_1): Made Medusa stuff not
appear when HAVE_MEDUSA is not defined.
Other changes:
* libnautilus-extensions/nautilus-program-choosing.c:
(get_xalf_prefix): Bug fix from Darin (!= -> ==) that
was breaking launching applications unless you had xalf
installed (not from branch)
Diffstat (limited to 'libnautilus-private/nautilus-program-choosing.c')
-rw-r--r-- | libnautilus-private/nautilus-program-choosing.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libnautilus-private/nautilus-program-choosing.c b/libnautilus-private/nautilus-program-choosing.c index 207cf933f..67c87064e 100644 --- a/libnautilus-private/nautilus-program-choosing.c +++ b/libnautilus-private/nautilus-program-choosing.c @@ -608,7 +608,7 @@ get_xalf_prefix (const char *name) return g_strdup (""); } xalf_executable = gnome_is_program_in_path ("xalf"); - if (xalf_executable != NULL) { + if (xalf_executable == NULL) { return g_strdup (""); } |