diff options
author | Tom Rondeau <tom@trondeau.com> | 2014-04-21 18:34:24 -0400 |
---|---|---|
committer | Tom Rondeau <tom@trondeau.com> | 2014-05-17 17:45:11 -0400 |
commit | 74a4b423a3f62eac39b56c430502c8d4b2929c97 (patch) | |
tree | 1d860530a6a67c74cc2db14cf2327d9ef2b0e36c | |
parent | 6ce85e06aec7b481c5ab2438e78f70982a0c9022 (diff) |
docs: doxygen mangles sections named with the same reference name. ControlPort and Vocoder both used 'using' - renamed for each.
-rw-r--r-- | docs/doxygen/other/ctrlport.dox | 12 | ||||
-rw-r--r-- | gr-vocoder/doc/vocoder.dox | 2 |
2 files changed, 7 insertions, 7 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) diff --git a/gr-vocoder/doc/vocoder.dox b/gr-vocoder/doc/vocoder.dox index 0e12566a80..e3be774564 100644 --- a/gr-vocoder/doc/vocoder.dox +++ b/gr-vocoder/doc/vocoder.dox @@ -20,7 +20,7 @@ by using: help(vocoder) \endcode -\section using Using the vocoders +\section using_vocoders Using the vocoders Note that most vocoders use short inputs instead of floats. This means you must convert audio signals from float to short by using a type conversion |