diff options
Diffstat (limited to 'misc/bibletime/files/patch-src__bibletime.cpp')
-rw-r--r-- | misc/bibletime/files/patch-src__bibletime.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/misc/bibletime/files/patch-src__bibletime.cpp b/misc/bibletime/files/patch-src__bibletime.cpp new file mode 100644 index 000000000000..29b6a6ae4296 --- /dev/null +++ b/misc/bibletime/files/patch-src__bibletime.cpp @@ -0,0 +1,11 @@ +--- ./src/bibletime.cpp.orig 2009-12-15 13:23:36.000000000 -0500 ++++ ./src/bibletime.cpp 2009-12-15 13:24:19.000000000 -0500 +@@ -61,7 +61,7 @@ + const int month = date.month(); + QString splashImage(DU::getPicsDir().canonicalPath().append("/")); + +- if ((month >= 12 && day >= 24) || (month <= 1 && day < 6)) { ++ if ((month >= 12) || (month <= 1 && day < 6)) { + splashImage.append("startuplogo_christmas.png"); + } else { + splashImage.append("startuplogo.png"); |