| 435 stash = "Purple::Log"; |
437 stash = "Purple::Log"; |
| 436 else if (type == PURPLE_TYPE_XFER) |
438 else if (type == PURPLE_TYPE_XFER) |
| 437 stash = "Purple::Xfer"; |
439 stash = "Purple::Xfer"; |
| 438 else if (type == PURPLE_TYPE_XMLNODE) |
440 else if (type == PURPLE_TYPE_XMLNODE) |
| 439 stash = "Purple::XMLNode"; |
441 stash = "Purple::XMLNode"; |
| 440 else if (type == PURPLE_TYPE_USERINFO) |
442 else if (type == PURPLE_TYPE_NOTIFY_USER_INFO) |
| 441 stash = "Purple::NotifyUserInfo"; |
443 stash = "Purple::NotifyUserInfo"; |
| 442 else if (type == PURPLE_TYPE_STORED_IMAGE) |
444 else if (type == PURPLE_TYPE_STORED_IMAGE) |
| 443 stash = "Purple::StoredImage"; |
445 stash = "Purple::StoredImage"; |
| 444 else if (type == PURPLE_TYPE_CERTIFICATEPOOL) |
446 else if (type == PURPLE_TYPE_CERTIFICATE_POOL) |
| 445 stash = "Purple::Certificate::Pool"; |
447 stash = "Purple::Certificate::Pool"; |
| 446 |
448 |
| 447 return sv_2mortal(purple_perl_bless_object(arg, stash)); |
449 return sv_2mortal(purple_perl_bless_object(arg, stash)); |
| 448 } |
450 } |
| 449 |
451 |