--- tracker_373/src/tracker-search-tool/tracker-search-tool-callbacks.c 2007-01-09 17:38:58.000000000 +0200 +++ tracker/src/tracker-search-tool/tracker-search-tool-callbacks.c 2007-01-09 21:10:35.000000000 +0200 @@ -346,7 +346,7 @@ GTK_BUTTONS_OK, primary); gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG (dialog), - _("The nautilus file manager is not running.")); + _("A file manager was not found. Check if xdg-utils is installed.")); gtk_window_set_title (GTK_WINDOW (dialog), ""); gtk_container_set_border_width (GTK_CONTAINER (dialog), 5); @@ -459,9 +459,7 @@ if (g_file_test (locale_file, G_FILE_TEST_IS_DIR)) { if (open_file_with_xdg_open (gsearch->window, locale_file) == FALSE) { - if (open_file_with_nautilus (gsearch->window, locale_file) == FALSE) { display_dialog_could_not_open_folder (gsearch->window, utf8_name); - } } } else { @@ -572,10 +570,8 @@ folder_locale = g_filename_from_utf8 (folder_utf8, -1, NULL, NULL, NULL); if (open_file_with_xdg_open (gsearch->window, folder_locale) == FALSE) { - if (open_file_with_nautilus (gsearch->window, folder_locale) == FALSE) { - display_dialog_could_not_open_folder (gsearch->window, folder_utf8); - } + display_dialog_could_not_open_folder (gsearch->window, folder_utf8); g_list_foreach (list, (GFunc) gtk_tree_path_free, NULL); g_list_free (list); g_free (folder_locale);