pidgin: 672b82e5: perl: Fix the package names for some typ...
darkrain42 at pidgin.im
darkrain42 at pidgin.im
Thu Dec 31 00:35:26 EST 2009
-----------------------------------------------------------------
Revision: 672b82e51ae9adcb4d1c5a4ebd0705eaa8b3bc09
Ancestor: 91db9c50f0f4b04e9f6e466f2e0ab1a94d5716d1
Author: cafoote at yahoo.com
Date: 2009-12-31T05:32:08
Branch: im.pidgin.pidgin
URL: http://d.pidgin.im/viewmtn/revision/info/672b82e51ae9adcb4d1c5a4ebd0705eaa8b3bc09
Modified files:
COPYRIGHT ChangeLog.API libpurple/plugins/perl/common/Log.xs
libpurple/plugins/perl/common/Proxy.xs
ChangeLog:
perl: Fix the package names for some types. Closes #10973.
-------------- next part --------------
============================================================
--- COPYRIGHT 1605453081e6accf5bc67a4cead98ffe25a37650
+++ COPYRIGHT 925d46388546cd5bd35a22c929862dff66dbaf94
@@ -154,6 +154,7 @@ Rob Foehl (rwf)
David Fiander
Rob Flynn <gaim at robflynn.com>
Rob Foehl (rwf)
+Chris Foote
Alan Ford
Nathan Fredrickson
Chris J. Friesen
============================================================
--- ChangeLog.API 0ac41de7213da3aa0b141a659c274c9bc08a784f
+++ ChangeLog.API 51a8103e1f6092c646d81d467ad88e2db5fda1c4
@@ -7,6 +7,13 @@ version 2.6.5 (??/??/20??):
purple_xfer_request_denied if an error is found when selecting
a file to send. Request denied is still used when a receive
request is not allowed.
+ Perl:
+ Changed:
+ * Corrected the package names for the PurpleProxyType and
+ PurpleLogReadFlags enums to have the correct number of colons
+ (from Purple::ProxyType::::<type> to Purple::ProxyType::<type>
+ and Purple::Log:ReadFlags::::<type> to
+ Purple::Log::ReadFlags::<type>) (Chris Foote)
version 2.6.4 (11/29/2009):
No changes
============================================================
--- libpurple/plugins/perl/common/Log.xs e8a472a89b20ecc1855dfe9d469991d5c47f7bcf
+++ libpurple/plugins/perl/common/Log.xs 9316c35aaacb5dbb82491368f0170c45b3463548
@@ -6,7 +6,7 @@ BOOT:
BOOT:
{
HV *type_stash = gv_stashpv("Purple::Log::Type", 1);
- HV *flags_stash = gv_stashpv("Purple::Log:ReadFlags::", 1);
+ HV *flags_stash = gv_stashpv("Purple::Log::ReadFlags", 1);
static const constiv *civ, type_const_iv[] = {
#define const_iv(name) {#name, (IV)PURPLE_LOG_##name}
============================================================
--- libpurple/plugins/perl/common/Proxy.xs cad36d5bfd82eae380e05c7d31363c9bb05a5a83
+++ libpurple/plugins/perl/common/Proxy.xs 62289af17c9c46f8e58d94f1521a6d68fa5ca111
@@ -5,7 +5,7 @@ BOOT:
BOOT:
{
- HV *stash = gv_stashpv("Purple::ProxyType::", 1);
+ HV *stash = gv_stashpv("Purple::ProxyType", 1);
static const constiv *civ, const_iv[] = {
#define const_iv(name) {#name, (IV)PURPLE_PROXY_##name}
More information about the Commits
mailing list