aboutsummaryrefslogtreecommitdiffstats
path: root/textproc/p5-XML-XQL
ModeNameSize
-rw-r--r--Makefile812logstatsplainblame
-rw-r--r--distinfo132logstatsplainblame
-rw-r--r--pkg-descr604logstatsplainblame
-rw-r--r--pkg-plist447logstatsplainblame
"Subject for the mail message"), N_("SUBJECT") }, { "cc", 'c', POPT_ARG_STRING, &cc, 0, N_("List of people that will be Carbo Copied"), N_("CC-LIST") }, { "bcc", 'b', POPT_ARG_STRING, &bcc, 0, N_("List of people to Blind Carbon Copy this mail to"), N_("BCC-LIST") }, { "body", 0, POPT_ARG_STRING, &body, 0, N_("Filename containing the body of the message"), N_("BODY-FILE") }, { NULL, 0, 0, NULL, 0 } }; static void error (const char *msg) { GtkWidget *dialog; dialog = gnome_message_box_new ( msg, GNOME_MESSAGE_BOX_ERROR, GNOME_STOCK_BUTTON_OK, NULL); gnome_dialog_run_and_close (GNOME_DIALOG (dialog)); exit (1); g_assert_not_reached (); } GNOME_Evolution_Composer_RecipientList * make_list (char *str) { GNOME_Evolution_Composer_RecipientList *list; char *p; int count = 0; if (str == NULL) str = ""; list = GNOME_Evolution_Composer_RecipientList__alloc(); if (*str) count = 1; for (p = str; *p; p++){ if (*p == ',') count++; } list->_maximum = count; list->_length = count;