You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ch...@apache.org on 2006/09/29 21:10:50 UTC

svn commit: r451391 - /incubator/activemq/activemq-cpp/trunk/activemq-cpp/src/examples/main.cpp

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 <activemq/concurrent/Thread.h>
 #include <activemq/concurrent/Runnable.h>
 #include <activemq/core/ActiveMQConnectionFactory.h>
-#include <activemq/util/Interger.h>
+#include <activemq/util/Integer.h>
 #include <cms/Connection.h>
 #include <cms/Session.h>
 #include <cms/TextMessage.h>
@@ -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;