summaryrefslogtreecommitdiffstats
path: root/src/doxygen.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2019-07-31 11:06:38 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2019-07-31 11:06:38 (GMT)
commit61a987f886200cc62a786c3bd558f428062cf529 (patch)
treee26e68937cee21e01ebbc60a39d60bc0b9559506 /src/doxygen.cpp
parent28c10b0c9f4d4ebf1d9ac105241033eaf6fde228 (diff)
downloadDoxygen-61a987f886200cc62a786c3bd558f428062cf529.zip
Doxygen-61a987f886200cc62a786c3bd558f428062cf529.tar.gz
Doxygen-61a987f886200cc62a786c3bd558f428062cf529.tar.bz2
issue 7068: "QGDict::hashAsciiKey: Invalid null key" error messages (part 2)
Diffstat (limited to 'src/doxygen.cpp')
-rw-r--r--src/doxygen.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/doxygen.cpp b/src/doxygen.cpp
index 6f59411..18936fa 100644
--- a/src/doxygen.cpp
+++ b/src/doxygen.cpp
@@ -3650,9 +3650,9 @@ static void buildFunctionList(Entry *root)
)
{
GroupDef *gd=0;
- if (root->groups->getFirst()!=0)
+ if (root->groups->getFirst() && !root->groups->getFirst()->groupname.isEmpty())
{
- gd = Doxygen::groupSDict->find(root->groups->getFirst()->groupname.data());
+ gd = Doxygen::groupSDict->find(root->groups->getFirst()->groupname);
}
//printf("match!\n");
//printf("mnd=%p rnd=%p nsName=%s rnsName=%s\n",mnd,rnd,nsName.data(),rnsName.data());