mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-04 18:20:42 +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;
|
||||
uLong *pX;
|
||||
{
|
||||
uLong x ;
|
||||
int i;
|
||||
uLong x;
|
||||
int i=0;
|
||||
int err;
|
||||
|
||||
err = unzlocal_getByte(pzlib_filefunc_def,filestream,&i);
|
||||
@ -233,8 +233,8 @@ local int unzlocal_getLong (pzlib_filefunc_def,filestream,pX)
|
||||
voidpf filestream;
|
||||
uLong *pX;
|
||||
{
|
||||
uLong x ;
|
||||
int i;
|
||||
uLong x;
|
||||
int i=0;
|
||||
int err;
|
||||
|
||||
err = unzlocal_getByte(pzlib_filefunc_def,filestream,&i);
|
||||
@ -730,6 +730,7 @@ local int unzlocal_GetCurrentFileInfoInternal (file,
|
||||
else
|
||||
uSeek+=file_info.size_file_comment;
|
||||
|
||||
(void)uSeek;
|
||||
if ((err==UNZ_OK) && (pfile_info!=NULL))
|
||||
*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) &&
|
||||
(s->cur_file_info.compression_method!=Z_DEFLATED))
|
||||
(s->cur_file_info.compression_method!=Z_DEFLATED)) {
|
||||
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=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 x ;
|
||||
int i;
|
||||
int i=0;
|
||||
int err;
|
||||
|
||||
err = ziplocal_getByte(pzlib_filefunc_def,filestream,&i);
|
||||
@ -407,7 +407,7 @@ local int ziplocal_getLong (pzlib_filefunc_def,filestream,pX)
|
||||
uLong *pX;
|
||||
{
|
||||
uLong x ;
|
||||
int i;
|
||||
int i=0;
|
||||
int err;
|
||||
|
||||
err = ziplocal_getByte(pzlib_filefunc_def,filestream,&i);
|
||||
@ -1077,8 +1077,10 @@ extern int ZEXPORT zipCloseFileInZipRaw (file, uncompressed_size, crc32)
|
||||
uLong uTotalOutBefore;
|
||||
if (zi->ci.stream.avail_out == 0)
|
||||
{
|
||||
if (zipFlushWriteBuffer(zi) == ZIP_ERRNO)
|
||||
if (zipFlushWriteBuffer(zi) == ZIP_ERRNO) {
|
||||
err = ZIP_ERRNO;
|
||||
(void)err; //MW: Shuttup warnings
|
||||
}
|
||||
zi->ci.stream.avail_out = (uInt)Z_BUFSIZE;
|
||||
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 copyright (C) 2011-2016 Mark Watkins <mark@jedimark.net>
|
||||
SleepyHead is copyright (C) 2011-2018 Mark Watkins <mark@jedimark.net>
|
||||
|
||||
Requirements:
|
||||
-------------
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,8 +1,8 @@
|
||||
/* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* 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);
|
||||
|
||||
done = false;
|
||||
// done = false;
|
||||
//bool first=true;
|
||||
//quint8 exch;
|
||||
cnt = 0;
|
||||
@ -341,7 +341,7 @@ int MSeriesLoader::Open(QString path)
|
||||
u1 = cb[0] << 8 | cb[1];
|
||||
|
||||
if (u1 != 0xfe0b) {
|
||||
done = true;
|
||||
// done = true;
|
||||
break;
|
||||
}
|
||||
|
||||
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* 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
|
||||
qint64 t = time.nsecsElapsed();
|
||||
int cnt = el->count();
|
||||
int bytes = cnt * (sizeof(EventStoreType) + sizeof(quint32));
|
||||
int wvbytes = recs * (sizeof(EventStoreType));
|
||||
QHash<ChannelID, qint64>::iterator it = channel_efficiency.find(code);
|
||||
if (el != nullptr) {
|
||||
qint64 t = time.nsecsElapsed();
|
||||
int cnt = el->count();
|
||||
int bytes = cnt * (sizeof(EventStoreType) + sizeof(quint32));
|
||||
int wvbytes = recs * (sizeof(EventStoreType));
|
||||
QHash<ChannelID, qint64>::iterator it = channel_efficiency.find(code);
|
||||
|
||||
if (it == channel_efficiency.end()) {
|
||||
channel_efficiency[code] = wvbytes - bytes;
|
||||
channel_time[code] = t;
|
||||
} else {
|
||||
it.value() += wvbytes - bytes;
|
||||
channel_time[code] += t;
|
||||
if (it == channel_efficiency.end()) {
|
||||
channel_efficiency[code] = wvbytes - bytes;
|
||||
channel_time[code] = t;
|
||||
} else {
|
||||
it.value() += wvbytes - bytes;
|
||||
channel_time[code] += t;
|
||||
}
|
||||
}
|
||||
|
||||
#endif
|
||||
}
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,7 +1,7 @@
|
||||
/* SleepLib Session Implementation
|
||||
* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -2,7 +2,7 @@
|
||||
*
|
||||
* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* License. See the file COPYING in the main directory of the Linux
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* 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
|
||||
* 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