Return-Path: Delivered-To: apmail-geronimo-activemq-commits-archive@www.apache.org Received: (qmail 23483 invoked from network); 29 Sep 2006 19:13:28 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 29 Sep 2006 19:13:28 -0000 Received: (qmail 17057 invoked by uid 500); 29 Sep 2006 19:13:19 -0000 Delivered-To: apmail-geronimo-activemq-commits-archive@geronimo.apache.org Received: (qmail 16966 invoked by uid 500); 29 Sep 2006 19:13:18 -0000 Mailing-List: contact activemq-commits-help@geronimo.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: activemq-dev@geronimo.apache.org Delivered-To: mailing list activemq-commits@geronimo.apache.org Received: (qmail 16905 invoked by uid 99); 29 Sep 2006 19:13:18 -0000 Received: from idunn.apache.osuosl.org (HELO idunn.apache.osuosl.org) (140.211.166.84) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 29 Sep 2006 12:13:18 -0700 X-ASF-Spam-Status: No, hits=-9.4 required=5.0 tests=ALL_TRUSTED,NO_REAL_NAME Received: from [140.211.166.113] ([140.211.166.113:64733] helo=eris.apache.org) by idunn.apache.osuosl.org (ecelerity 2.1.1.8 r(12930)) with ESMTP id 10/FB-13110-D007D154 for ; Fri, 29 Sep 2006 12:12:32 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id 291A71A984D; Fri, 29 Sep 2006 12:10:50 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r451391 - /incubator/activemq/activemq-cpp/trunk/activemq-cpp/src/examples/main.cpp Date: Fri, 29 Sep 2006 19:10:50 -0000 To: activemq-commits@geronimo.apache.org From: chirino@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20060929191050.291A71A984D@eris.apache.org> X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: chirino Date: Fri Sep 29 12:10:49 2006 New Revision: 451391 URL: http://svn.apache.org/viewvc?view=rev&rev=451391 Log: Fix mis spelling Modified: incubator/activemq/activemq-cpp/trunk/activemq-cpp/src/examples/main.cpp Modified: incubator/activemq/activemq-cpp/trunk/activemq-cpp/src/examples/main.cpp URL: http://svn.apache.org/viewvc/incubator/activemq/activemq-cpp/trunk/activemq-cpp/src/examples/main.cpp?view=diff&rev=451391&r1=451390&r2=451391 ============================================================================== --- incubator/activemq/activemq-cpp/trunk/activemq-cpp/src/examples/main.cpp (original) +++ incubator/activemq/activemq-cpp/trunk/activemq-cpp/src/examples/main.cpp Fri Sep 29 12:10:49 2006 @@ -20,7 +20,7 @@ #include #include #include -#include +#include #include #include #include @@ -77,7 +77,7 @@ producer->setDeliveryMode( DeliveryMode::NON_PERSISTANT ); // Create the Thread Id String - string threadIdStr = Interger::toString( Thread::getId() ); + string threadIdStr = Integer::toString( Thread::getId() ); // Create a messages string text = (string)"Hello world! from thread " + threadIdStr;