Patch #3125 2011-02-03 04:29

cryogen

Updated DoxyBlocks' output to doxygen 1.7.3.
Download
3125-Updated_DoxyBl.patch (13.0 KB)
Category
Plugin::FeatureAdd
Status
Accepted
Close date
2011-02-03 20:01
Assigned to
killerbot
Index: src/plugins/contrib/DoxyBlocks/ChangeLog.txt
===================================================================
--- src/plugins/contrib/DoxyBlocks/ChangeLog.txt    (revision 6951)
+++ src/plugins/contrib/DoxyBlocks/ChangeLog.txt    (working copy)
@@ -1,3 +1,9 @@
+02 February 2011
+   released version 1.6.613 of DoxyBlocks
+
+     Change log:
+        -Updated: doxygen support to v1.7.3.
+
 12 July 2010
    released version 1.6.606 of DoxyBlocks
 
Index: src/plugins/contrib/DoxyBlocks/Config.cpp
===================================================================
--- src/plugins/contrib/DoxyBlocks/Config.cpp    (revision 6951)
+++ src/plugins/contrib/DoxyBlocks/Config.cpp    (working copy)
@@ -134,40 +134,40 @@
     wxFileConfig *cfgFile = new wxFileConfig(wxEmptyString, wxEmptyString, GetCBConfigDir() + sCfgIni, wxEmptyString, wxCONFIG_USE_GLOBAL_FILE);
 
     // Comment style.
-    cfgFile->Write(sSectionCommentStyle + sCommentBlock, m_iBlockComment);
-    cfgFile->Write(sSectionCommentStyle + sCommentLine, m_iLineComment);
+    cfgFile->Write(sSectionCommentStyle + sCommentBlock, int(m_iBlockComment));
+    cfgFile->Write(sSectionCommentStyle + sCommentLine, int(m_iLineComment));
     // Project.
-    cfgFile->Write(sSectionProject + sUseAutoVersion, m_bUseAutoVersion);
+    cfgFile->Write(sSectionProject + sUseAutoVersion, int(m_bUseAutoVersion));
     cfgFile->Write(sSectionProject + sOutputLanguage, m_sOutputLanguage);
     // Build.
-    cfgFile->Write(sSectionBuild + sExtractAll, m_bExtractAll);
-    cfgFile->Write(sSectionBuild + sExtractPrivate, m_bExtractPrivate);
-    cfgFile->Write(sSectionBuild + sExtractStatic, m_bExtractStatic);
+    cfgFile->Write(sSectionBuild + sExtractAll, int(m_bExtractAll));
+    cfgFile->Write(sSectionBuild + sExtractPrivate, int(m_bExtractPrivate));
+    cfgFile->Write(sSectionBuild + sExtractStatic, int(m_bExtractStatic));
     // Warnings.
-    cfgFile->Write(sSectionWarnings + sWarnings, m_bWarnings);
-    cfgFile->Write(sSectionWarnings + sWarnIfDocError, m_bWarnIfDocError);
-    cfgFile->Write(sSectionWarnings + sWarnIfUndocumented, m_bWarnIfUndocumented);
-    cfgFile->Write(sSectionWarnings + sWarnNoParamDoc, m_bWarnNoParamdoc);
+    cfgFile->Write(sSectionWarnings + sWarnings, int(m_bWarnings));
+    cfgFile->Write(sSectionWarnings + sWarnIfDocError, int(m_bWarnIfDocError));
+    cfgFile->Write(sSectionWarnings + sWarnIfUndocumented, int(m_bWarnIfUndocumented));
+    cfgFile->Write(sSectionWarnings + sWarnNoParamDoc, int(m_bWarnNoParamdoc));
     // Alphabetical class index.
-    cfgFile->Write(sSectionAlphabeticalClassIndex + sAlphabeticalIndex, m_bAlphabeticalIndex);
+    cfgFile->Write(sSectionAlphabeticalClassIndex + sAlphabeticalIndex, int(m_bAlphabeticalIndex));
     // Output.
-    cfgFile->Write(sSectionOutput + sGenerateHTML, m_bGenerateHTML);
-    cfgFile->Write(sSectionOutput + sGenerateHTMLHelp, m_bGenerateHTMLHelp);
-    cfgFile->Write(sSectionOutput + sGenerateCHI, m_bGenerateCHI);
-    cfgFile->Write(sSectionOutput + sBinaryTOC, m_bBinaryTOC);
-    cfgFile->Write(sSectionOutput + sGenerateLatex, m_bGenerateLatex);
-    cfgFile->Write(sSectionOutput + sGenerateRTF, m_bGenerateRTF);
-    cfgFile->Write(sSectionOutput + sGenerateMan, m_bGenerateMan);
-    cfgFile->Write(sSectionOutput + sGenerateXML, m_bGenerateXML);
-    cfgFile->Write(sSectionOutput + sGenerateAutogenDef, m_bGenerateAutogenDef);
-    cfgFile->Write(sSectionOutput + sGeneratePerlMod, m_bGeneratePerlMod);
+    cfgFile->Write(sSectionOutput + sGenerateHTML, int(m_bGenerateHTML));
+    cfgFile->Write(sSectionOutput + sGenerateHTMLHelp, int(m_bGenerateHTMLHelp));
+    cfgFile->Write(sSectionOutput + sGenerateCHI, int(m_bGenerateCHI));
+    cfgFile->Write(sSectionOutput + sBinaryTOC, int(m_bBinaryTOC));
+    cfgFile->Write(sSectionOutput + sGenerateLatex, int(m_bGenerateLatex));
+    cfgFile->Write(sSectionOutput + sGenerateRTF, int(m_bGenerateRTF));
+    cfgFile->Write(sSectionOutput + sGenerateMan, int(m_bGenerateMan));
+    cfgFile->Write(sSectionOutput + sGenerateXML, int(m_bGenerateXML));
+    cfgFile->Write(sSectionOutput + sGenerateAutogenDef, int(m_bGenerateAutogenDef));
+    cfgFile->Write(sSectionOutput + sGeneratePerlMod, int(m_bGeneratePerlMod));
     // Pre-processor.
-    cfgFile->Write(sSectionPreProcessor + sEnablePreProcessing, m_bEnablePreprocessing);
+    cfgFile->Write(sSectionPreProcessor + sEnablePreProcessing, int(m_bEnablePreprocessing));
     // Dot.
-    cfgFile->Write(sSectionDot + sClassDiagrams, m_bClassDiagrams);
-    cfgFile->Write(sSectionDot + sHaveDot, m_bHaveDot);
+    cfgFile->Write(sSectionDot + sClassDiagrams, int(m_bClassDiagrams));
+    cfgFile->Write(sSectionDot + sHaveDot, int(m_bHaveDot));
     // General.
-    cfgFile->Write(sSectionGeneral + sUseAtInTags, m_bUseAtInTags);
+    cfgFile->Write(sSectionGeneral + sUseAtInTags, int(m_bUseAtInTags));
 
     bool bOK = cfgFile->Flush();
 
Index: src/plugins/contrib/DoxyBlocks/DoxyBlocks.cbp
download for full patch...
cryogen 2011-02-03 04:30

Also killed some compiler warnings.

http://forums.codeblocks.org/index.php/topic,12052.0.html