diff libpurple/plugins/perl/common/fallback/const-xs.inc @ 15834:2f8274ce570a

Perl fixes for s/gaim/purple/. This hasn't really been tested yet.
author Daniel Atallah <daniel.atallah@gmail.com>
date Mon, 19 Mar 2007 17:02:24 +0000
parents 5fe8042783c1
children
line wrap: on
line diff
--- a/libpurple/plugins/perl/common/fallback/const-xs.inc	Mon Mar 19 17:01:28 2007 +0000
+++ b/libpurple/plugins/perl/common/fallback/const-xs.inc	Mon Mar 19 17:02:24 2007 +0000
@@ -22,12 +22,12 @@
            Second, if present, is found value */
         switch (type) {
         case PERL_constant_NOTFOUND:
-          sv = sv_2mortal(newSVpvf("%s is not a valid Gaim::DebugLevel macro", s));
+          sv = sv_2mortal(newSVpvf("%s is not a valid Purple::DebugLevel macro", s));
           PUSHs(sv);
           break;
         case PERL_constant_NOTDEF:
           sv = sv_2mortal(newSVpvf(
-	    "Your vendor has not defined Gaim::DebugLevel macro %s, used", s));
+	    "Your vendor has not defined Purple::DebugLevel macro %s, used", s));
           PUSHs(sv);
           break;
         case PERL_constant_ISIV:
@@ -82,7 +82,7 @@
           break; */
         default:
           sv = sv_2mortal(newSVpvf(
-	    "Unexpected return type %d while processing Gaim::DebugLevel macro %s, used",
+	    "Unexpected return type %d while processing Purple::DebugLevel macro %s, used",
                type, s));
           PUSHs(sv);
         }