summaryrefslogtreecommitdiffstats
path: root/src/htmlgen.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/htmlgen.h')
-rw-r--r--src/htmlgen.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/htmlgen.h b/src/htmlgen.h
index ff77fe7..45899a6 100644
--- a/src/htmlgen.h
+++ b/src/htmlgen.h
@@ -48,7 +48,7 @@ class HtmlCodeGenerator : public CodeOutputInterface
void setCurrentDoc(const Definition *,const char *,bool) {}
void addWord(const char *,bool) {}
void startCodeFragment(const char *style);
- void endCodeFragment();
+ void endCodeFragment(const char *);
private:
void _writeCodeLink(const char *className,
@@ -111,8 +111,8 @@ class HtmlGenerator : public OutputGenerator
{ m_codeGen.writeCodeAnchor(anchor); }
void startCodeFragment(const char *style)
{ m_codeGen.startCodeFragment(style); }
- void endCodeFragment()
- { m_codeGen.endCodeFragment(); }
+ void endCodeFragment(const char *style)
+ { m_codeGen.endCodeFragment(style); }
// ---------------------------
void setCurrentDoc(const Definition *context,const char *anchor,bool isSourceFile);