summaryrefslogtreecommitdiff
path: root/cpp/bindings
diff options
context:
space:
mode:
authorDarryl L. Pierce <mcpierce@apache.org>2013-05-14 21:26:37 +0000
committerDarryl L. Pierce <mcpierce@apache.org>2013-05-14 21:26:37 +0000
commit15c5e37cbe099fceb62222de1d1494254129bcca (patch)
tree668be9ebf2be78026413ef9d7ab90367159a5043 /cpp/bindings
parentaaba7675e191b8120e8590750cfe2feb747b74d0 (diff)
downloadqpid-python-15c5e37cbe099fceb62222de1d1494254129bcca.tar.gz
QPID-4843: Fixed the Perl spout.pl example.
It still called the old setProperty method on Message rather than set_property. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1482598 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/bindings')
-rwxr-xr-xcpp/bindings/qpid/examples/perl/spout.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/bindings/qpid/examples/perl/spout.pl b/cpp/bindings/qpid/examples/perl/spout.pl
index d8ac860143..74e589b617 100755
--- a/cpp/bindings/qpid/examples/perl/spout.pl
+++ b/cpp/bindings/qpid/examples/perl/spout.pl
@@ -70,7 +70,7 @@ sub setProperties {
foreach (@properties) {
my ( $name, $value ) = split( "=", $_ );
- $message->setProperty( $name, $value );
+ $message->set_property( $name, $value );
}
}