| Summary: | dox-files are not saved before building API docs | ||
|---|---|---|---|
| Product: | [Applications] kdevelop | Reporter: | Daniel Franke <franke.daniel> |
| Component: | Doxygen integration | Assignee: | kdevelop-bugs-null |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | LO | ||
| Version First Reported In: | 3.2.0 | ||
| Target Milestone: | --- | ||
| Platform: | unspecified | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Daniel Franke
2005-04-18 13:12:38 UTC
Yeap, you are correct. SVN commit 622958 by dagerbo:
Save files before running Doxygen build
BUG: 104134
M +2 -0 doxygenpart.cpp
--- branches/kdevelop/3.4/parts/doxygen/doxygenpart.cpp #622957:622958
@@ -216,6 +216,8 @@
void DoxygenPart::slotDoxygen()
{
+ if ( !partController()->saveAllFiles() ) return;
+
bool searchDatabase = false;
QString outputDirectory;
QString htmlDirectory;
|