summaryrefslogtreecommitdiff
path: root/src/nautilus-simple-search-bar.c
diff options
context:
space:
mode:
authorJohn Sullivan <sullivan@src.gnome.org>2000-08-29 00:12:05 +0000
committerJohn Sullivan <sullivan@src.gnome.org>2000-08-29 00:12:05 +0000
commitadad24996dd2f3a94b3717570a6e22a2ae6d98c8 (patch)
tree5397a88f9bdb67ffca2567d7aa91f80976b8e9b7 /src/nautilus-simple-search-bar.c
parentc6221eea1d80617ed47d2ccd5688c0a93212f645 (diff)
downloadnautilus-adad24996dd2f3a94b3717570a6e22a2ae6d98c8.tar.gz
Added more bug numbers to FIXMEs. 77 to go. I am exhausted
from creating bug reports, so the remaining ones will have to wait until at least tomorrow. * src/nautilus-complex-search-bar.c: (nautilus_complex_search_bar_set_location), (fewer_options_callback), (update_options_buttons_state): * src/nautilus-search-bar.c: * src/nautilus-sidebar-tabs.c: (draw_one_tab_themed), (get_tab_width): * src/nautilus-sidebar.c: (receive_dropped_uri_list), (receive_dropped_keyword), (add_command_buttons): * src/nautilus-simple-search-bar.c: (nautilus_search_uri_to_simple_search_criteria), (nautilus_simple_search_criteria_to_search_uri): * src/nautilus-switchable-search-bar.c: (search_bar_preference_changed_callback), (nautilus_switchable_search_bar_set_location), (nautilus_search_uri_is_displayable_by_mode):
Diffstat (limited to 'src/nautilus-simple-search-bar.c')
-rw-r--r--src/nautilus-simple-search-bar.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/nautilus-simple-search-bar.c b/src/nautilus-simple-search-bar.c
index c3a64afd3..2b43c1428 100644
--- a/src/nautilus-simple-search-bar.c
+++ b/src/nautilus-simple-search-bar.c
@@ -168,7 +168,7 @@ nautilus_simple_search_bar_get_location (NautilusNavigationBar *navigation_bar)
char *
nautilus_search_uri_to_simple_search_criteria (const char *uri)
{
- /* FIXME: Not yet implemented. */
+ /* FIXME bugzilla.eazel.com 2511: Not yet implemented. */
return g_strdup ("");
}
@@ -181,7 +181,8 @@ nautilus_simple_search_criteria_to_search_uri (const char *search_criteria)
char *escaped_fragment;
int length, i;
- /* FIXME: The logic here should be exactly the same as the logic for
+ /* FIXME bugzilla.eazel.com 2512:
+ * The logic here should be exactly the same as the logic for
* a complex search-by-file-name. Currently the complex search doesn't
* do the multi-word handling that this function does. They should use
* the same code.
@@ -189,14 +190,14 @@ nautilus_simple_search_criteria_to_search_uri (const char *search_criteria)
g_return_val_if_fail (search_criteria != NULL, NULL);
words = g_strsplit (search_criteria, " ", strlen (search_criteria));
- /* FIXME: this should eventually be: length = strlen ("[file%3A%2F%2F%2F]"); */
+ /* FIXME bugzilla.eazel.com 2513: this should eventually be: length = strlen ("[file%3A%2F%2F%2F]"); */
length = strlen ("[file:///]");
/* Count total length */
for (i = 0; words[i] != NULL; i++) {
length += strlen (words[i]) + strlen (NAUTILUS_SEARCH_URI_TEXT_NAME) + strlen (" contains & ");
}
fragment = g_new0 (char, length + 1);
- /* FIXME: this should eventually be: sprintf (fragment, "[file%%3A%%2F%%2F%%2F]"); */
+ /* FIXME bugzilla.eazel.com 2513: this should eventually be: sprintf (fragment, "[file%%3A%%2F%%2F%%2F]"); */
sprintf (fragment, "[file:///]");
if (words[0] != NULL) {
for (i = 0; words[i+1] != NULL; i++) {