view pixmaps/gnome_add.xpm @ 4029:31480901bf29

[gaim-migrate @ 4233] "with the change to .60 and the new method of using perl_call argument parsing was broken. What essentially happened is that the previous method of pre-parsing was to generate a string in the for 'arg one','arg two','arg three' and execute the perl function via &perlfunc(args). This would make the perl function in essense parse the variables for us. With the introduction of perl_call, however, that argument list was being treated as one long, singular argument. perl_call asks for lists of pointers to character arrays that are NULL terminated, and it passes them into the function using an internal method. With this said, I changed the function execute_perl from requiring (char* function, char* args) to (char* function, char** args). It no longer takes a single argument and inserts it into the appropriate data type that is terminated with a NULL element, instead you now have to pass it a pre-NULL terminated array of character pointers to accomodate some functions wanting to give it more than one argument. I modified the functions that use execute_perl to use this method, and commented those lines, as well chopping the multiple argument section into buf[0] = looking sections for clarity. Finally, I inserted a heft comment above execute_perl to try and explain what I did, I hope it is understandable. " -- Eric Timme (var1ety) committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Sun, 01 Dec 2002 20:43:00 +0000
parents ff7a04b30608
children
line wrap: on
line source

/* XPM */
static char * gnome_add_xpm[] = {
"24 24 29 1",
" 	c None",
".	c #000000",
"+	c #706C60",
"@	c #E0DCC0",
"#	c #6F6B5F",
"$	c #6E6A5E",
"%	c #DEDABE",
"&	c #ADA798",
"*	c #686754",
"=	c #949480",
"-	c #BAB696",
";	c #41413F",
">	c #5F5F59",
",	c #D4CCC0",
"'	c #A7A296",
")	c #B3B090",
"!	c #484844",
"~	c #84847C",
"{	c #A19D90",
"]	c #4B4B48",
"^	c #CEC7B9",
"/	c #969289",
"(	c #BAB3A8",
"_	c #6D6D66",
":	c #AAA597",
"<	c #5B5B56",
"[	c #7F7C71",
"}	c #5A5A54",
"|	c #8D897F",
"                        ",
"                        ",
"                        ",
"           ...          ",
"           ...          ",
"           ...          ",
"           ...          ",
"           ...          ",
"         .......        ",
"          .....         ",
"       ...+...@...      ",
"     ..++#$#.@%%@@..    ",
"     .&.*+++=@@@-;>.    ",
"     .,,'.*+=@)!>~~.    ",
"     .,,,,{.+]>~~~~.    ",
"     .,,,,,^.~~~~~~.    ",
"     .,,,,,,.~~~~~~.    ",
"     .,,,,,,.~~~~~~.    ",
"     ./(,,,,.~~~~~_.    ",
"      ..:,,,.~~~~<..    ",
"        .[(,.~~}..      ",
"         ..|.}..        ",
"           ...          ",
"                        "};