Mercurial > pidgin.yaz
comparison src/dialogs.c @ 1109:c73736fa0b7c
[gaim-migrate @ 1119]
Auto-Away, courtesy BMiller. damn cool. i'm impressed. also minor touch-ups, mostly to indicate what all the FIXME's mean.
committer: Tailor Script <tailor@pidgin.im>
author | Eric Warmenhoven <eric@warmenhoven.org> |
---|---|
date | Mon, 20 Nov 2000 10:37:40 +0000 |
parents | d7944415b1cc |
children | 1a3dbc0e6529 |
comparison
equal
deleted
inserted
replaced
1108:cb338aa38e78 | 1109:c73736fa0b7c |
---|---|
1178 char *city = gtk_entry_get_text(GTK_ENTRY(b->city)); | 1178 char *city = gtk_entry_get_text(GTK_ENTRY(b->city)); |
1179 char *state = gtk_entry_get_text(GTK_ENTRY(b->state)); | 1179 char *state = gtk_entry_get_text(GTK_ENTRY(b->state)); |
1180 char *country = gtk_entry_get_text(GTK_ENTRY(b->country)); | 1180 char *country = gtk_entry_get_text(GTK_ENTRY(b->country)); |
1181 | 1181 |
1182 | 1182 |
1183 /* FIXME */ | 1183 /* FIXME : set dir. not important */ |
1184 if (connections) | 1184 if (connections) |
1185 serv_set_dir(connections->data, first, middle, last, maiden, city, state, country, web); | 1185 serv_set_dir(connections->data, first, middle, last, maiden, city, state, country, web); |
1186 | 1186 |
1187 destroy_dialog(NULL, b->window); | 1187 destroy_dialog(NULL, b->window); |
1188 g_free(b); | 1188 g_free(b); |
1939 maiden = gtk_entry_get_text(GTK_ENTRY(b->maidenentry)); | 1939 maiden = gtk_entry_get_text(GTK_ENTRY(b->maidenentry)); |
1940 city = gtk_entry_get_text(GTK_ENTRY(b->cityentry)); | 1940 city = gtk_entry_get_text(GTK_ENTRY(b->cityentry)); |
1941 state = gtk_entry_get_text(GTK_ENTRY(b->stateentry)); | 1941 state = gtk_entry_get_text(GTK_ENTRY(b->stateentry)); |
1942 country = gtk_entry_get_text(GTK_ENTRY(b->countryentry)); | 1942 country = gtk_entry_get_text(GTK_ENTRY(b->countryentry)); |
1943 | 1943 |
1944 /* FIXME */ | 1944 /* FIXME : dir search. not sure if even works; not important */ |
1945 if (connections) | 1945 if (connections) |
1946 serv_dir_search(connections->data, first, middle, last, maiden, city, state, country, ""); | 1946 serv_dir_search(connections->data, first, middle, last, maiden, city, state, country, ""); |
1947 destroy_dialog(NULL, b->window); | 1947 destroy_dialog(NULL, b->window); |
1948 } | 1948 } |
1949 | 1949 |
1951 { | 1951 { |
1952 char *email; | 1952 char *email; |
1953 | 1953 |
1954 email = gtk_entry_get_text(GTK_ENTRY(b->emailentry)); | 1954 email = gtk_entry_get_text(GTK_ENTRY(b->emailentry)); |
1955 | 1955 |
1956 /* FIXME */ | 1956 /* FIXME : email search. not sure if even works; not important */ |
1957 if (connections) | 1957 if (connections) |
1958 serv_dir_search(connections->data, "","","","","","","", email); | 1958 serv_dir_search(connections->data, "","","","","","","", email); |
1959 | 1959 |
1960 destroy_dialog(NULL, b->window); | 1960 destroy_dialog(NULL, b->window); |
1961 } | 1961 } |
2797 if (file_is_dir(path, importdialog)) { | 2797 if (file_is_dir(path, importdialog)) { |
2798 g_free (buf); | 2798 g_free (buf); |
2799 g_free (first); | 2799 g_free (first); |
2800 return; | 2800 return; |
2801 } | 2801 } |
2802 /* FIXME */ | 2802 /* FIXME : import buddy list file. moderately important */ |
2803 gc = connections->data; | 2803 gc = connections->data; |
2804 } | 2804 } |
2805 else { | 2805 else { |
2806 for (i = 0; i < strlen(gc->username); i++) | 2806 for (i = 0; i < strlen(gc->username); i++) |
2807 g_screenname[i] = toupper(gc->username[i]); | 2807 g_screenname[i] = toupper(gc->username[i]); |