diff options
author | Tom Rondeau <tom@trondeau.com> | 2014-04-21 18:34:24 -0400 |
---|---|---|
committer | Tom Rondeau <tom@trondeau.com> | 2014-04-21 18:34:24 -0400 |
commit | 1c21dada05770fafac2d8ca53b90db83327af1d5 (patch) | |
tree | e2d13ebb3e6781458a1f1e0913b0c19bc6398b15 /docs/doxygen/other | |
parent | f1075bab714eb95afb1c68e8733dc5bab9df730a (diff) |
docs: doxygen mangles sections named with the same reference name. ControlPort and Vocoder both used 'using' - renamed for each.
Diffstat (limited to 'docs/doxygen/other')
-rw-r--r-- | docs/doxygen/other/ctrlport.dox | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/doxygen/other/ctrlport.dox b/docs/doxygen/other/ctrlport.dox index 9679036aac..a1ffcadef4 100644 --- a/docs/doxygen/other/ctrlport.dox +++ b/docs/doxygen/other/ctrlport.dox @@ -69,7 +69,7 @@ configure ICE can be found here: http://doc.zeroc.com/display/Ice/Properties+and+Configuration -\section using Using ControlPort to Export Variables +\section using_ctrlport Using ControlPort to Export Variables The ability to export variables from a block is inherited from gr::block. Then, when the flowgraph is started, the function @@ -122,7 +122,7 @@ namespace gr { sync_bloc(....), d_a(a), d_b(b) { } - + foo_impl::~foo_impl() { } @@ -215,9 +215,9 @@ gets. These take the form: rpcbasic_register_get(const std::string& name, const char* functionbase, T* obj, - Tfrom (T::*function)(), + Tfrom (T::*function)(), const pmt::pmt_t &min, const pmt::pmt_t &max, const pmt::pmt_t &def, - const char* units_ = "", + const char* units_ = "", const char* desc_ = "", priv_lvl_t minpriv_ = RPC_PRIVLVL_MIN, DisplayType display_ = DISPNULL) @@ -225,9 +225,9 @@ gets. These take the form: rpcbasic_register_set(const std::string& name, const char* functionbase, T* obj, - void (T::*function)(Tto), + void (T::*function)(Tto), const pmt::pmt_t &min, const pmt::pmt_t &max, const pmt::pmt_t &def, - const char* units_ = "", + const char* units_ = "", const char* desc_ = "", priv_lvl_t minpriv_ = RPC_PRIVLVL_MIN, DisplayType display_ = DISPNULL) |