Improve doxygen output.
authordooglus <dooglus@1f10aa63-cdf2-0310-b900-c93c546f37ac>
Tue, 11 Dec 2007 23:25:52 +0000 (23:25 +0000)
committerdooglus <dooglus@1f10aa63-cdf2-0310-b900-c93c546f37ac>
Tue, 11 Dec 2007 23:25:52 +0000 (23:25 +0000)
git-svn-id: http://svn.voria.com/code@1194 1f10aa63-cdf2-0310-b900-c93c546f37ac

synfig-core/trunk/src/synfig/module.h

index c1126eb..d142287 100644 (file)
@@ -88,9 +88,9 @@
 //! Marks the start of the layers in the module's inventory
 #define BEGIN_LAYERS {
 
-//! DEPRECATED - use @INCLUDE_LAYER()
-//#define LAYER(x) synfig::Layer::book()[synfig::String(x::name__)]=x::create;
+//! DEPRECATED - use #INCLUDE_LAYER(class)
 #define LAYER(class)   synfig::Layer::register_in_book(synfig::Layer::BookEntry(class::create,class::name__,class::local_name__,class::category__,class::cvs_id__,class::version__));
+//#define LAYER(x) synfig::Layer::book()[synfig::String(x::name__)]=x::create;
 #define LAYER_ALIAS(class,alias)       synfig::Layer::register_in_book(synfig::Layer::BookEntry(class::create,alias,alias,_("Do Not Use"),class::cvs_id__,class::version__));
 
 //! Marks the end of the layers in the module's inventory