diff options
| author | Georg Brandl <georg@python.org> | 2011-01-07 18:58:23 +0100 |
|---|---|---|
| committer | Georg Brandl <georg@python.org> | 2011-01-07 18:58:23 +0100 |
| commit | 4a7726e4448158af894ee3461b05d1080e31eaa8 (patch) | |
| tree | 089ecb58428d50171f7399ab81b8c464b930a96c /sphinx/domains/cpp.py | |
| parent | ee17c817cd08c816f242fb96ac789d3ba33cb9de (diff) | |
| download | sphinx-4a7726e4448158af894ee3461b05d1080e31eaa8.tar.gz | |
Fix general index links for C++ domain objects.
Diffstat (limited to 'sphinx/domains/cpp.py')
| -rw-r--r-- | sphinx/domains/cpp.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/domains/cpp.py b/sphinx/domains/cpp.py index 04fa100d..c7074fb8 100644 --- a/sphinx/domains/cpp.py +++ b/sphinx/domains/cpp.py @@ -829,7 +829,7 @@ class CPPObject(ObjectDescription): indextext = self.get_index_text(name) if indextext: - self.indexnode['entries'].append(('single', indextext, name, name)) + self.indexnode['entries'].append(('single', indextext, theid, name)) def before_content(self): lastname = self.names and self.names[-1] |
