Re: [Doxygen-users] aliases
Brought to you by:
dimitri
From: Frederic M. <fre...@fe...> - 2002-02-14 09:26:23
|
Multiple definition of configuration parameter only keeps the last one. Try to find the place where ALIASES is defined in your config file (I suppose you kept the original one) : ALIASES = "........" and add the following line just after : ALIASES += "z=BLAH" (don't foget the '+', it's the key !) This should work now. Fred Kevin Williams <KWi...@vi...> wrote >From: Kevin Williams <KWi...@vi...> >To: "'dox...@li...'" > <dox...@li...> >Date: Wed, 13 Feb 2002 07:37:11 -0800 >Subject: [Doxygen-users] aliases > >This message is in MIME format. Since your mail reader does not understand >this format, some or all of this message may not be legible. > >------_=_NextPart_001_01C1B4A4.4DC97890 >Content-Type: text/plain > >Using Doxygen 1.2.13.1. The first thing in my config file is this: > >ALIASES = "z=BLAH" > >Here's some source code I ran through doxygen: > >/** @file blah.cpp */ > >/*! > * @brief Blah blah blah > * > * @z This is a test. > */ >void blah(void) >{ > return; >} > >In doxygen's HTML output, my @z alias doesn't get turned into BLAH (it >remains "@z"). Am I defining the alias incorrectly? Or do aliases not work >in this case for some reason? > >-- Kevin Williams > Visionael Corporation > kwi...@vi... > |