From a770feec38cd8a188a4c4c88f34d513155b4b539 Mon Sep 17 00:00:00 2001
From: Tom Rondeau <trondeau@vt.edu>
Date: Wed, 6 Mar 2013 12:23:05 -0500
Subject: blocks: removing blocks moved into gr-blocks:

message_strobe, message_debug, message_source, message_sink, message_burst_source, peak_detector, moving_average.
---
 gr-blocks/lib/message_burst_source_impl.cc | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

(limited to 'gr-blocks/lib/message_burst_source_impl.cc')

diff --git a/gr-blocks/lib/message_burst_source_impl.cc b/gr-blocks/lib/message_burst_source_impl.cc
index f3c90eda31..5ac417f7a5 100644
--- a/gr-blocks/lib/message_burst_source_impl.cc
+++ b/gr-blocks/lib/message_burst_source_impl.cc
@@ -61,7 +61,7 @@ namespace gr {
     {
       std::stringstream id;
       id << name() << unique_id();
-      d_me = pmt::pmt_string_to_symbol(id.str());
+      d_me = pmt::string_to_symbol(id.str());
     }
 
     message_burst_source_impl::message_burst_source_impl(size_t itemsize, gr_msg_queue_sptr msgq)
@@ -73,7 +73,7 @@ namespace gr {
     {
       std::stringstream id;
       id << name() << unique_id();
-      d_me = pmt::pmt_string_to_symbol(id.str());
+      d_me = pmt::string_to_symbol(id.str());
     }
 
     message_burst_source_impl::~message_burst_source_impl()
@@ -112,8 +112,8 @@ namespace gr {
 	    //tag end of burst
 	    add_item_tag(0, //stream ID
 			 abs_sample_count+nn-1, //sample number
-			 pmt::pmt_string_to_symbol("tx_eob"),      
-			 pmt::pmt_from_bool(1),
+			 pmt::string_to_symbol("tx_eob"),      
+			 pmt::from_bool(1),
 			 d_me);        //block src id
           }
         }
@@ -133,8 +133,8 @@ namespace gr {
           //tag start of burst
           add_item_tag(0, //stream ID
                        abs_sample_count+nn, //sample number
-                       pmt::pmt_string_to_symbol("tx_sob"),      
-                       pmt::pmt_from_bool(1),
+                       pmt::string_to_symbol("tx_sob"),      
+                       pmt::from_bool(1),
                        d_me);        //block src id
 
           if((d_msg->length() % d_itemsize) != 0)
-- 
cgit v1.2.3