summaryrefslogtreecommitdiffstats
path: root/src/searchindex.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/searchindex.cpp')
-rw-r--r--src/searchindex.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/searchindex.cpp b/src/searchindex.cpp
index b21d587..eee1aa1 100644
--- a/src/searchindex.cpp
+++ b/src/searchindex.cpp
@@ -426,7 +426,7 @@ struct SearchIndexExternal::Private
{
Private() : docEntries(12251) {}
SDict<SearchDocEntry> docEntries;
- SearchDocEntry *current;
+ SearchDocEntry *current = 0;
};
SearchIndexExternal::SearchIndexExternal() : SearchIndexIntf(External)
@@ -731,7 +731,7 @@ static QCString searchId(const QCString &s)
return result;
}
-void createJavascriptSearchIndex()
+void createJavaScriptSearchIndex()
{
bool sliceOpt = Config_getBool(OPTIMIZE_OUTPUT_SLICE);
@@ -953,7 +953,7 @@ void createJavascriptSearchIndex()
}
}
-void writeJavascriptSearchIndex()
+void writeJavaScriptSearchIndex()
{
int i;
int cnt = 0;
@@ -1372,7 +1372,7 @@ void initSearchIndexer()
}
}
-void finializeSearchIndexer()
+void finalizeSearchIndexer()
{
delete Doxygen::searchIndex;
}