Details
-
Bug
-
Resolution: Unresolved
-
P3: Somewhat important
-
None
-
6.9
-
None
Description
Consider the following project
foo.qdocconf
project = Foo
description = Stuff
documentationinheaders = true
headerdirs = .
sourcedirs = .
foo.qdoc
/*! \module Foo \title Foo C++ Classes \brief Stuff */
foo.h
namespace ANamespace { namespace Nested { /*! * \class ANamespace::Nested::Foo * \inmodule Foo * * A class */ class Foo { }; }; };
foo.cpp
#include "foo.h"
The generated foo-module.html has
<a href="anamespace-nested-foo.html">ANamespace::Nested::Foo</a>
but no anamespace-nested-foo.html is created.
It works correctly with a single, non-nested namespace