mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 02:30:44 +00:00
Clean up some more warnings, and update Copyright strings
This commit is contained in:
parent
4ed77fc64a
commit
8acbfe0e92
13
3rdparty/quazip/quazip/unzip.c
vendored
13
3rdparty/quazip/quazip/unzip.c
vendored
@ -205,8 +205,8 @@ local int unzlocal_getShort (pzlib_filefunc_def,filestream,pX)
|
|||||||
voidpf filestream;
|
voidpf filestream;
|
||||||
uLong *pX;
|
uLong *pX;
|
||||||
{
|
{
|
||||||
uLong x ;
|
uLong x;
|
||||||
int i;
|
int i=0;
|
||||||
int err;
|
int err;
|
||||||
|
|
||||||
err = unzlocal_getByte(pzlib_filefunc_def,filestream,&i);
|
err = unzlocal_getByte(pzlib_filefunc_def,filestream,&i);
|
||||||
@ -233,8 +233,8 @@ local int unzlocal_getLong (pzlib_filefunc_def,filestream,pX)
|
|||||||
voidpf filestream;
|
voidpf filestream;
|
||||||
uLong *pX;
|
uLong *pX;
|
||||||
{
|
{
|
||||||
uLong x ;
|
uLong x;
|
||||||
int i;
|
int i=0;
|
||||||
int err;
|
int err;
|
||||||
|
|
||||||
err = unzlocal_getByte(pzlib_filefunc_def,filestream,&i);
|
err = unzlocal_getByte(pzlib_filefunc_def,filestream,&i);
|
||||||
@ -730,6 +730,7 @@ local int unzlocal_GetCurrentFileInfoInternal (file,
|
|||||||
else
|
else
|
||||||
uSeek+=file_info.size_file_comment;
|
uSeek+=file_info.size_file_comment;
|
||||||
|
|
||||||
|
(void)uSeek;
|
||||||
if ((err==UNZ_OK) && (pfile_info!=NULL))
|
if ((err==UNZ_OK) && (pfile_info!=NULL))
|
||||||
*pfile_info=file_info;
|
*pfile_info=file_info;
|
||||||
|
|
||||||
@ -1117,8 +1118,10 @@ extern int ZEXPORT unzOpenCurrentFile3 (file, method, level, raw, password)
|
|||||||
}
|
}
|
||||||
|
|
||||||
if ((s->cur_file_info.compression_method!=0) &&
|
if ((s->cur_file_info.compression_method!=0) &&
|
||||||
(s->cur_file_info.compression_method!=Z_DEFLATED))
|
(s->cur_file_info.compression_method!=Z_DEFLATED)) {
|
||||||
err=UNZ_BADZIPFILE;
|
err=UNZ_BADZIPFILE;
|
||||||
|
(void)err; //MW: Shuttup warnings
|
||||||
|
}
|
||||||
|
|
||||||
pfile_in_zip_read_info->crc32_wait=s->cur_file_info.crc;
|
pfile_in_zip_read_info->crc32_wait=s->cur_file_info.crc;
|
||||||
pfile_in_zip_read_info->crc32=0;
|
pfile_in_zip_read_info->crc32=0;
|
||||||
|
8
3rdparty/quazip/quazip/zip.c
vendored
8
3rdparty/quazip/quazip/zip.c
vendored
@ -379,7 +379,7 @@ local int ziplocal_getShort (pzlib_filefunc_def,filestream,pX)
|
|||||||
uLong *pX;
|
uLong *pX;
|
||||||
{
|
{
|
||||||
uLong x ;
|
uLong x ;
|
||||||
int i;
|
int i=0;
|
||||||
int err;
|
int err;
|
||||||
|
|
||||||
err = ziplocal_getByte(pzlib_filefunc_def,filestream,&i);
|
err = ziplocal_getByte(pzlib_filefunc_def,filestream,&i);
|
||||||
@ -407,7 +407,7 @@ local int ziplocal_getLong (pzlib_filefunc_def,filestream,pX)
|
|||||||
uLong *pX;
|
uLong *pX;
|
||||||
{
|
{
|
||||||
uLong x ;
|
uLong x ;
|
||||||
int i;
|
int i=0;
|
||||||
int err;
|
int err;
|
||||||
|
|
||||||
err = ziplocal_getByte(pzlib_filefunc_def,filestream,&i);
|
err = ziplocal_getByte(pzlib_filefunc_def,filestream,&i);
|
||||||
@ -1077,8 +1077,10 @@ extern int ZEXPORT zipCloseFileInZipRaw (file, uncompressed_size, crc32)
|
|||||||
uLong uTotalOutBefore;
|
uLong uTotalOutBefore;
|
||||||
if (zi->ci.stream.avail_out == 0)
|
if (zi->ci.stream.avail_out == 0)
|
||||||
{
|
{
|
||||||
if (zipFlushWriteBuffer(zi) == ZIP_ERRNO)
|
if (zipFlushWriteBuffer(zi) == ZIP_ERRNO) {
|
||||||
err = ZIP_ERRNO;
|
err = ZIP_ERRNO;
|
||||||
|
(void)err; //MW: Shuttup warnings
|
||||||
|
}
|
||||||
zi->ci.stream.avail_out = (uInt)Z_BUFSIZE;
|
zi->ci.stream.avail_out = (uInt)Z_BUFSIZE;
|
||||||
zi->ci.stream.next_out = zi->ci.buffered_data;
|
zi->ci.stream.next_out = zi->ci.buffered_data;
|
||||||
}
|
}
|
||||||
|
2
README
2
README
@ -5,7 +5,7 @@ which are devices used in the treatment of Sleep Disorders like Obstructive Slee
|
|||||||
|
|
||||||
SleepyHead is written by Mark Watkins (aka Jedimark), an Australian software developer afflicted with sleep apnea.
|
SleepyHead is written by Mark Watkins (aka Jedimark), an Australian software developer afflicted with sleep apnea.
|
||||||
|
|
||||||
SleepyHead is copyright (C) 2011-2016 Mark Watkins <mark@jedimark.net>
|
SleepyHead is copyright (C) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
|
|
||||||
Requirements:
|
Requirements:
|
||||||
-------------
|
-------------
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* MinutesAtPressure Graph Implementation
|
/* MinutesAtPressure Graph Implementation
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (c) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Minutes At Pressure Graph Header
|
/* Minutes At Pressure Graph Header
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (C) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* gFlagsLine Header
|
/* gFlagsLine Header
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (C) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* gFooBar Implementation
|
/* gFooBar Implementation
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (c) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* gFooBar Header
|
/* gFooBar Header
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (C) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* gGraph Header
|
/* gGraph Header
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (C) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* gGraphView Implementation
|
/* gGraphView Implementation
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (c) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* gLineChart Implementation
|
/* gLineChart Implementation
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (c) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* gLineChart Header
|
/* gLineChart Header
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (C) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* gLineOverlayBar Implementation
|
/* gLineOverlayBar Implementation
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (c) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* gLineOverlayBar Header
|
/* gLineOverlayBar Header
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (C) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* gSegmentChart Implementation
|
/* gSegmentChart Implementation
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (c) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* gSegmentChart Header
|
/* gSegmentChart Header
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (C) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* gSessionTimesChart Implementation
|
/* gSessionTimesChart Implementation
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (c) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* gSessionTimesChart Header
|
/* gSessionTimesChart Header
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (C) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* gStatsLine Implementation
|
/* gStatsLine Implementation
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (c) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* gStatsLine
|
/* gStatsLine
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (C) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* gSummaryChart Implementation
|
/* gSummaryChart Implementation
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (c) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* gSummaryChart Header
|
/* gSummaryChart Header
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (C) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* gXAxis Implementation
|
/* gXAxis Implementation
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (c) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* gXAxis Header
|
/* gXAxis Header
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (C) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* gYAxis Implementation
|
/* gYAxis Implementation
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (c) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* gYAxis Header
|
/* gYAxis Header
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (C) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* gDailySummary Graph Header
|
/* gDailySummary Graph Header
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (C) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* glcommon GL code & font stuff
|
/* glcommon GL code & font stuff
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (c) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* glcommon GL code & font stuff Header
|
/* glcommon GL code & font stuff Header
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (C) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* graph spacer Implementation
|
/* graph spacer Implementation
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (c) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* graph spacer Header
|
/* graph spacer Header
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (C) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Graph Layer Implementation
|
/* Graph Layer Implementation
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (c) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Graph Layer Implementation
|
/* Graph Layer Implementation
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (C) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Custom CPAP/Oximetry Calculations Header
|
/* Custom CPAP/Oximetry Calculations Header
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (c) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Custom CPAP/Oximetry Calculations Header
|
/* Custom CPAP/Oximetry Calculations Header
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (C) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Common code and junk
|
/* Common code and junk
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (C) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* SleepLib Day Class Header
|
/* SleepLib Day Class Header
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (C) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* SleepLib Event Class Header
|
/* SleepLib Event Class Header
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (C) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* SleepLib Journal Implementation
|
/* SleepLib Journal Implementation
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (c) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* SleepLib Journal Implementation
|
/* SleepLib Journal Implementation
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (C) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* SleepLib CMS50X Loader Implementation
|
/* SleepLib CMS50X Loader Implementation
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (c) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* SleepLib CMS50X Loader Header
|
/* SleepLib CMS50X Loader Header
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (C) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* SleepLib CMS50X Loader Implementation
|
/* SleepLib CMS50X Loader Implementation
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (c) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* SleepLib CMS50X Loader Header
|
/* SleepLib CMS50X Loader Header
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (C) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* SleepLib Fisher & Paykel Icon Loader Implementation
|
/* SleepLib Fisher & Paykel Icon Loader Implementation
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (c) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* SleepLib Fisher & Paykel Icon Loader Implementation
|
/* SleepLib Fisher & Paykel Icon Loader Implementation
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (C) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
/* SleepLib (DeVilbiss) Intellipap Loader Implementation
|
/* SleepLib (DeVilbiss) Intellipap Loader Implementation
|
||||||
*
|
*
|
||||||
* Notes: Intellipap requires the SmartLink attachment to access this data.
|
* Notes: Intellipap DV54 requires the SmartLink attachment to access this data.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (c) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Intellipap Loader Header
|
/* Intellipap Loader Header
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (C) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* SleepLib ChoiceMMed MD300W1 Oximeter Loader Implementation
|
/* SleepLib ChoiceMMed MD300W1 Oximeter Loader Implementation
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (C) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* SleepLib ChoiceMMed MD300W1 Oximeter Loader Header
|
/* SleepLib ChoiceMMed MD300W1 Oximeter Loader Header
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (C) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* SleepLib RemStar M-Series Loader Implementation
|
/* SleepLib RemStar M-Series Loader Implementation
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (c) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
@ -332,7 +332,7 @@ int MSeriesLoader::Open(QString path)
|
|||||||
} while (cb < endcard && !done);
|
} while (cb < endcard && !done);
|
||||||
} while (cb < endcard && !done);
|
} while (cb < endcard && !done);
|
||||||
|
|
||||||
done = false;
|
// done = false;
|
||||||
//bool first=true;
|
//bool first=true;
|
||||||
//quint8 exch;
|
//quint8 exch;
|
||||||
cnt = 0;
|
cnt = 0;
|
||||||
@ -341,7 +341,7 @@ int MSeriesLoader::Open(QString path)
|
|||||||
u1 = cb[0] << 8 | cb[1];
|
u1 = cb[0] << 8 | cb[1];
|
||||||
|
|
||||||
if (u1 != 0xfe0b) {
|
if (u1 != 0xfe0b) {
|
||||||
done = true;
|
// done = true;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
*
|
*
|
||||||
* SleepLib RemStar M-Series Loader Header
|
* SleepLib RemStar M-Series Loader Header
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (C) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* SleepLib PRS1 Loader Implementation
|
/* SleepLib PRS1 Loader Implementation
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (c) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* SleepLib PRS1 Loader Header
|
/* SleepLib PRS1 Loader Header
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (C) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* SleepLib ResMed Loader Implementation
|
/* SleepLib ResMed Loader Implementation
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (c) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
@ -2932,20 +2932,21 @@ void ResmedLoader::ToTimeDelta(Session *sess, EDFParser &edf, EDFSignal &es, Cha
|
|||||||
}
|
}
|
||||||
|
|
||||||
#ifdef DEBUG_EFFICIENCY
|
#ifdef DEBUG_EFFICIENCY
|
||||||
qint64 t = time.nsecsElapsed();
|
if (el != nullptr) {
|
||||||
int cnt = el->count();
|
qint64 t = time.nsecsElapsed();
|
||||||
int bytes = cnt * (sizeof(EventStoreType) + sizeof(quint32));
|
int cnt = el->count();
|
||||||
int wvbytes = recs * (sizeof(EventStoreType));
|
int bytes = cnt * (sizeof(EventStoreType) + sizeof(quint32));
|
||||||
QHash<ChannelID, qint64>::iterator it = channel_efficiency.find(code);
|
int wvbytes = recs * (sizeof(EventStoreType));
|
||||||
|
QHash<ChannelID, qint64>::iterator it = channel_efficiency.find(code);
|
||||||
|
|
||||||
if (it == channel_efficiency.end()) {
|
if (it == channel_efficiency.end()) {
|
||||||
channel_efficiency[code] = wvbytes - bytes;
|
channel_efficiency[code] = wvbytes - bytes;
|
||||||
channel_time[code] = t;
|
channel_time[code] = t;
|
||||||
} else {
|
} else {
|
||||||
it.value() += wvbytes - bytes;
|
it.value() += wvbytes - bytes;
|
||||||
channel_time[code] += t;
|
channel_time[code] += t;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* SleepLib RESMED Loader Header
|
/* SleepLib RESMED Loader Header
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (C) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* SleepLib Somnopose Loader Implementation
|
/* SleepLib Somnopose Loader Implementation
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (c) 2011-2016 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* SleepLib Somnopose Loader Header
|
/* SleepLib Somnopose Loader Header
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (C) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* SleepLib Weinmann SOMNOsoft/Balance Loader Implementation
|
/* SleepLib Weinmann SOMNOsoft/Balance Loader Implementation
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (c) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* SleepLib Weinmann SOMNOsoft/Balance Loader Header
|
/* SleepLib Weinmann SOMNOsoft/Balance Loader Header
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (C) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* SleepLib ZEO Loader Implementation
|
/* SleepLib ZEO Loader Implementation
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (c) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* SleepLib ZEO Loader Header
|
/* SleepLib ZEO Loader Header
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (C) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* SleepLib Machine Class Implementation
|
/* SleepLib Machine Class Implementation
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (c) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* SleepLib Machine Class Header
|
/* SleepLib Machine Class Header
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (C) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* SleepLib Common Machine Stuff
|
/* SleepLib Common Machine Stuff
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (c) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* SleepLib Common Machine Header
|
/* SleepLib Common Machine Header
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (C) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* SleepLib Machine Loader Class Implementation
|
/* SleepLib Machine Loader Class Implementation
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (c) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* SleepLib Preferences Implementation
|
/* SleepLib Preferences Implementation
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (c) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* SleepLib Profiles Implementation
|
/* SleepLib Profiles Implementation
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (c) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* SleepLib Profiles Header
|
/* SleepLib Profiles Header
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (c) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* SleepLib Progress Dialog Header
|
/* SleepLib Progress Dialog Header
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (c) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* SleepLib Progress Dialog Header
|
/* SleepLib Progress Dialog Header
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (C) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Channel / Schema Implementation
|
/* Channel / Schema Implementation
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (c) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Schema Header (Parse Channel XML data)
|
/* Schema Header (Parse Channel XML data)
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (C) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* SleepLib Machine Loader Class Implementation
|
/* SleepLib Machine Loader Class Implementation
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (c) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* SleepLib MachineLoader Base Class Header
|
/* SleepLib MachineLoader Base Class Header
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (C) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
/* SleepLib Session Implementation
|
/* SleepLib Session Implementation
|
||||||
* This stuff contains the base calculation smarts
|
* This stuff contains the base calculation smarts
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (c) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
*
|
*
|
||||||
* This stuff contains the session calculation smarts
|
* This stuff contains the session calculation smarts
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (C) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* UpdaterWindow
|
/* UpdaterWindow
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (c) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* UpdaterWindow
|
/* UpdaterWindow
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (c) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Common GUI Functions Implementation
|
/* Common GUI Functions Implementation
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (c) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Common GUI Functions Header
|
/* Common GUI Functions Header
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (C) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Daily Panel
|
/* Daily Panel
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (c) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Daily GUI Headers
|
/* Daily GUI Headers
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (C) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* ExportCSV module implementation
|
/* ExportCSV module implementation
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (c) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* ExportCSV Module Header
|
/* ExportCSV Module Header
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (C) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* SleepyHead Logger module implementation
|
/* SleepyHead Logger module implementation
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (c) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* SleepyHead Main
|
/* SleepyHead Main
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (c) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* SleepyHead MainWindow Implementation
|
/* SleepyHead MainWindow Implementation
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (c) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* SleepyHead MainWindow Headers
|
/* SleepyHead MainWindow Headers
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (C) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Create New Profile Implementation
|
/* Create New Profile Implementation
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (c) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Create New Profile Header
|
/* Create New Profile Header
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (C) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Overview GUI Implementation
|
/* Overview GUI Implementation
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (c) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Overview GUI Headers
|
/* Overview GUI Headers
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (C) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Oximeter Import Wizard Implementation
|
/* Oximeter Import Wizard Implementation
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (c) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* SleepyHead Preferences Dialog Implementation
|
/* SleepyHead Preferences Dialog Implementation
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (c) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* SleepyHead Preferences Dialog Headers
|
/* SleepyHead Preferences Dialog Headers
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (c) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Profile Select Implementation (Login Screen)
|
/* Profile Select Implementation (Login Screen)
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (c) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Profile Select Header (Login Screen)
|
/* Profile Select Header (Login Screen)
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (c) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* Reports/Printing Module
|
/* Reports/Printing Module
|
||||||
*
|
*
|
||||||
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
|
* Copyright (c) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU General Public
|
* This file is subject to the terms and conditions of the GNU General Public
|
||||||
* License. See the file COPYING in the main directory of the Linux
|
* License. See the file COPYING in the main directory of the Linux
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user