- Add a new Log() function to replace ad-hoc std::cout calls wrapped in debugMode checks

- Remove debugMode from classes that don't need it (i.e all of them)
This commit is contained in:
Alfred Reynolds
2021-08-26 12:13:09 +12:00
parent 833e7ef915
commit be8f615c21
16 changed files with 105 additions and 131 deletions

View File

@@ -5,7 +5,9 @@
#-------------------------------------------------
QT += core gui network xml
CONFIG += qt debug
CONFIG += qt
CONFIG += debug
CONFIG += c++1z
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
@@ -35,7 +37,8 @@ SOURCES += \
pathtraverser.cpp \
overlay.cpp \
imageselector.cpp \
appconfig.cpp
appconfig.cpp \
logger.cpp
HEADERS += \
mainwindow.h \
@@ -44,7 +47,8 @@ HEADERS += \
overlay.h \
imageswitcher.h \
imagestructs.h \
appconfig.h
appconfig.h \
logger.h
FORMS += \
mainwindow.ui