summaryrefslogtreecommitdiffstats
path: root/qtools
diff options
context:
space:
mode:
Diffstat (limited to 'qtools')
-rw-r--r--qtools/Doxyfile2
-rw-r--r--qtools/qdatetime.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/qtools/Doxyfile b/qtools/Doxyfile
index 5311996..1727cf9 100644
--- a/qtools/Doxyfile
+++ b/qtools/Doxyfile
@@ -7,7 +7,7 @@ DOXYFILE_ENCODING = UTF-8
PROJECT_NAME = Qtools
PROJECT_NUMBER =
OUTPUT_DIRECTORY = ../qtools_docs
-CREATE_SUBDIRS = YES
+CREATE_SUBDIRS = NO
OUTPUT_LANGUAGE = English
BRIEF_MEMBER_DESC = YES
REPEAT_BRIEF = YES
diff --git a/qtools/qdatetime.cpp b/qtools/qdatetime.cpp
index cecb855..4edaca9 100644
--- a/qtools/qdatetime.cpp
+++ b/qtools/qdatetime.cpp
@@ -491,7 +491,7 @@ bool QDate::isValid( int y, int m, int d )
bool QDate::leapYear( int y )
{
- return y % 4 == 0 && y % 100 != 0 || y % 400 == 0;
+ return (y % 4 == 0 && y % 100 != 0) || (y % 400 == 0);
}
/*!