summaryrefslogtreecommitdiffstats
path: root/addon
diff options
context:
space:
mode:
Diffstat (limited to 'addon')
-rw-r--r--addon/doxyapp/CMakeLists.txt2
-rw-r--r--addon/doxyapp/doxyapp.cpp5
-rw-r--r--addon/doxyparse/CMakeLists.txt2
-rw-r--r--addon/doxyparse/doxyparse.cpp9
4 files changed, 6 insertions, 12 deletions
diff --git a/addon/doxyapp/CMakeLists.txt b/addon/doxyapp/CMakeLists.txt
index 9213e22..a6fde42 100644
--- a/addon/doxyapp/CMakeLists.txt
+++ b/addon/doxyapp/CMakeLists.txt
@@ -4,7 +4,6 @@ include_directories(
${PROJECT_SOURCE_DIR}/src
${PROJECT_SOURCE_DIR}/libversion
${GENERATED_SRC}
- ${PROJECT_SOURCE_DIR}/qtools
${ICONV_INCLUDE_DIR}
${CLANG_INCLUDEDIR}
)
@@ -36,7 +35,6 @@ endif()
target_link_libraries(doxyapp
doxymain
-qtools
md5
xml
lodepng
diff --git a/addon/doxyapp/doxyapp.cpp b/addon/doxyapp/doxyapp.cpp
index 06c7af3..ec93ef7 100644
--- a/addon/doxyapp/doxyapp.cpp
+++ b/addon/doxyapp/doxyapp.cpp
@@ -26,8 +26,7 @@
*/
#include <stdlib.h>
-#include <qfile.h>
-#include <qdir.h>
+#include "dir.h"
#include "doxygen.h"
#include "outputgen.h"
#include "parserintf.h"
@@ -297,7 +296,7 @@ int main(int argc,char **argv)
}
// clean up after us
- QDir().rmdir("/tmp/doxygen");
+ Dir().rmdir("/tmp/doxygen");
while (1)
{
diff --git a/addon/doxyparse/CMakeLists.txt b/addon/doxyparse/CMakeLists.txt
index 7a422a1..f439c29 100644
--- a/addon/doxyparse/CMakeLists.txt
+++ b/addon/doxyparse/CMakeLists.txt
@@ -4,7 +4,6 @@ include_directories(
${PROJECT_SOURCE_DIR}/src
${PROJECT_SOURCE_DIR}/libversion
${GENERATED_SRC}
- ${PROJECT_SOURCE_DIR}/qtools
${ICONV_INCLUDE_DIR}
${CLANG_INCLUDEDIR}
)
@@ -24,7 +23,6 @@ endif()
target_link_libraries(doxyparse
doxymain
-qtools
md5
xml
lodepng
diff --git a/addon/doxyparse/doxyparse.cpp b/addon/doxyparse/doxyparse.cpp
index 4059861..3090783 100644
--- a/addon/doxyparse/doxyparse.cpp
+++ b/addon/doxyparse/doxyparse.cpp
@@ -40,8 +40,7 @@
#include <cstdlib>
#include <sstream>
#include <map>
-#include <qdir.h>
-#include <qcstring.h>
+#include "qcstring.h"
#include "namespacedef.h"
#include "portable.h"
@@ -521,12 +520,12 @@ int main(int argc,char **argv) {
}
}
- QDir thisDir;
+ Dir thisDir;
// remove temporary files
- if (!Doxygen::filterDBFileName.isEmpty()) thisDir.remove(Doxygen::filterDBFileName);
+ if (!Doxygen::filterDBFileName.isEmpty()) thisDir.remove(Doxygen::filterDBFileName.str());
// clean up after us
- thisDir.rmdir(Config_getString(OUTPUT_DIRECTORY));
+ thisDir.rmdir(Config_getString(OUTPUT_DIRECTORY).str());
startYamlDocument();
listSymbols();