diff options
| author | Georg Brandl <georg@python.org> | 2011-01-07 19:00:29 +0100 |
|---|---|---|
| committer | Georg Brandl <georg@python.org> | 2011-01-07 19:00:29 +0100 |
| commit | 554c7dd64f6aca38be6e1d26bb2cf4388f46083d (patch) | |
| tree | a2318b0357a85ab129c5be18df18ce0db2759312 /sphinx/domains/cpp.py | |
| parent | 3448ad3099e0c30e6901589b6bd8e181a449c6aa (diff) | |
| download | sphinx-554c7dd64f6aca38be6e1d26bb2cf4388f46083d.tar.gz | |
#454: Add more index markup capabilities: marking see/seealso entries, and main entries for a given key.
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 4688691d..4e40dde7 100644 --- a/sphinx/domains/cpp.py +++ b/sphinx/domains/cpp.py @@ -852,7 +852,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, '')) def before_content(self): lastname = self.names and self.names[-1] |
