Skip to content
  • Frederik Schwarzer's avatar
    fix doxygen comments · 8c8e1748
    Frederik Schwarzer authored
    comments behind entities have a special syntax,
    otherwise they are linked to the next entity
    
    wrong:
    int i = 0; /** comment for k */
    int k = 0; /** comment is not linked to any item */
    
    right:
    int i = 0; /**< comment for i */
    int k = 0; /**< comment for k */
    
    svn path=/trunk/KDE/kdegraphics/gwenview/; revision=956894
    8c8e1748