changeset 28833:a158ef76d340

perl: Fix the package names for some types. Closes #10973. committer: Paul Aurich <paul@darkrain42.org>
author cafoote@yahoo.com
date Thu, 31 Dec 2009 05:32:08 +0000
parents 0c5995395579
children 2b9983e5cb8d 8defc6454a9f
files COPYRIGHT ChangeLog.API libpurple/plugins/perl/common/Log.xs libpurple/plugins/perl/common/Proxy.xs
diffstat 4 files changed, 10 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/COPYRIGHT	Thu Dec 31 05:23:13 2009 +0000
+++ b/COPYRIGHT	Thu Dec 31 05:32:08 2009 +0000
@@ -154,6 +154,7 @@
 David Fiander
 Rob Flynn <gaim@robflynn.com>
 Rob Foehl (rwf)
+Chris Foote
 Alan Ford
 Nathan Fredrickson
 Chris J. Friesen
--- a/ChangeLog.API	Thu Dec 31 05:23:13 2009 +0000
+++ b/ChangeLog.API	Thu Dec 31 05:32:08 2009 +0000
@@ -7,6 +7,13 @@
 		  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
--- a/libpurple/plugins/perl/common/Log.xs	Thu Dec 31 05:23:13 2009 +0000
+++ b/libpurple/plugins/perl/common/Log.xs	Thu Dec 31 05:32:08 2009 +0000
@@ -6,7 +6,7 @@
 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}
--- a/libpurple/plugins/perl/common/Proxy.xs	Thu Dec 31 05:23:13 2009 +0000
+++ b/libpurple/plugins/perl/common/Proxy.xs	Thu Dec 31 05:32:08 2009 +0000
@@ -5,7 +5,7 @@
 
 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}