From 294a6fd3b811703329eb15ed91d848c65cc6700e Mon Sep 17 00:00:00 2001
From: Tom Rondeau <trondeau@vt.edu>
Date: Sun, 10 Mar 2013 23:52:51 -0400
Subject: blocks: removing file_sink/source file_descriptor_sink/source form
 core and moved all refs to gr-blocks.

---
 docs/doxygen/other/main_page.dox | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

(limited to 'docs/doxygen')

diff --git a/docs/doxygen/other/main_page.dox b/docs/doxygen/other/main_page.dox
index 6f422dfd8f..f9e335061c 100644
--- a/docs/doxygen/other/main_page.dox
+++ b/docs/doxygen/other/main_page.dox
@@ -227,7 +227,7 @@ class mytb(gr.top_block):
         self.add  = blocks.add_cc()
         self.sub  = blocks.sub_cc()
         self.head = gr.head(gr.sizeof_gr_complex, 1000000)
-        self.snk  = gr.file_sink(gr.sizeof_gr_complex, "output.32fc")
+        self.snk  = blocks.file_sink(gr.sizeof_gr_complex, "output.32fc")
 
         self.connect(self.src0, (self.add,0))
         self.connect(self.src1, (self.add,1))
@@ -282,7 +282,7 @@ class mytb(gr.top_block):
         self.add  = blocks.add_cc()
         self.sub  = blocks.sub_cc()
         self.head = gr.head(gr.sizeof_gr_complex, 1000000)
-        self.snk  = gr.file_sink(gr.sizeof_gr_complex, "output.32fc")
+        self.snk  = blocks.file_sink(gr.sizeof_gr_complex, "output.32fc")
 
         self.connect(self.src0, (self.add,0))
         self.connect(self.src1, (self.add,1))
-- 
cgit v1.2.3