diff --git a/3rdparty/3rdparty.pro b/3rdparty/3rdparty.pro index 7ec6a29..ba9ba93 100644 --- a/3rdparty/3rdparty.pro +++ b/3rdparty/3rdparty.pro @@ -1,4 +1,4 @@ -ZINT_PATH = $$PWD/zint-2.6.1/ +ZINT_PATH = $$PWD/zint-2.6.1 ZINT_VERSION = 2.6.1 INCLUDEPATH += $${ZINT_PATH}/backend $${ZINT_PATH}/backend_qt DEPENDPATH += $${ZINT_PATH}/backend $${ZINT_PATH}/backend_qt diff --git a/3rdparty/zint-2.6.1/backend_qt/backend_qt.pro b/3rdparty/zint-2.6.1/backend_qt/backend_qt.pro index 13e5114..a1cd0ba 100644 --- a/3rdparty/zint-2.6.1/backend_qt/backend_qt.pro +++ b/3rdparty/zint-2.6.1/backend_qt/backend_qt.pro @@ -1,13 +1,13 @@ DEFINES += NO_PNG TEMPLATE = lib -contains(CONFIG, static_build){ +CONFIG(static_build) { message(Static Build) CONFIG += staticlib DEFINES += QZINT_STATIC_BUILD } -!contains(CONFIG, staticlib){ +!CONFIG(staticlib) { CONFIG += dll DEFINES += QZINT_LIBRARY } @@ -27,10 +27,10 @@ INCLUDEPATH += $$PWD/../backend DEFINES += ZINT_VERSION=\\\"$$ZINT_VERSION\\\" -CONFIG(release, debug|release){ - TARGET = QtZint +CONFIG(release, debug|release) { + TARGET = QtZint } else { - TARGET = QtZintd + TARGET = QtZintd } !contains(DEFINES, NO_PNG) { @@ -40,28 +40,28 @@ CONFIG(release, debug|release){ INCLUDEPATH += zint zint/backend zint/backend_qt -HEADERS += $$PWD/../backend/aztec.h \ - $$PWD/../backend/bmp.h \ - $$PWD/../backend/code49.h \ - $$PWD/../backend/common.h \ - $$PWD/../backend/composite.h \ - $$PWD/../backend/dmatrix.h \ - $$PWD/../backend/eci.h \ - $$PWD/../backend/font.h \ - $$PWD/../backend/gridmtx.h \ - $$PWD/../backend/gs1.h \ - $$PWD/../backend/hanxin.h \ - $$PWD/../backend/large.h \ - $$PWD/../backend/maxicode.h \ - $$PWD/../backend/pcx.h \ - $$PWD/../backend/pdf417.h \ - $$PWD/../backend/reedsol.h \ - $$PWD/../backend/rss.h \ - $$PWD/../backend/sjis.h \ - $$PWD/../backend/stdint_msvc.h \ - $$PWD/../backend/zint.h \ - $$PWD/qzint.h \ - $$PWD/qzint_global.h +HEADERS += $$PWD/../backend/aztec.h \ + $$PWD/../backend/bmp.h \ + $$PWD/../backend/code49.h \ + $$PWD/../backend/common.h \ + $$PWD/../backend/composite.h \ + $$PWD/../backend/dmatrix.h \ + $$PWD/../backend/eci.h \ + $$PWD/../backend/font.h \ + $$PWD/../backend/gridmtx.h \ + $$PWD/../backend/gs1.h \ + $$PWD/../backend/hanxin.h \ + $$PWD/../backend/large.h \ + $$PWD/../backend/maxicode.h \ + $$PWD/../backend/pcx.h \ + $$PWD/../backend/pdf417.h \ + $$PWD/../backend/reedsol.h \ + $$PWD/../backend/rss.h \ + $$PWD/../backend/sjis.h \ + $$PWD/../backend/stdint_msvc.h \ + $$PWD/../backend/zint.h \ + $$PWD/qzint.h \ + $$PWD/qzint_global.h SOURCES += $$PWD/../backend/2of5.c \ $$PWD/../backend/auspost.c \ diff --git a/common.pri b/common.pri index 56cb45d..4c39a6a 100644 --- a/common.pri +++ b/common.pri @@ -1,66 +1,76 @@ +# uncomment to disable translations +#CONFIG += no_build_translations + +# uncomment to disable zint +#CONFIG += no_zint + +# uncomment to disable svg +#CONFIG += no_svg + +# uncomment to enable easy_profiler +#CONFIG *= easy_profiler + isEmpty(BINARY_RESULT_DIR) { BINARY_RESULT_DIR = $${PWD} } -!contains(CONFIG, no_build_translations){ - CONFIG += build_translations +!CONFIG(no_build_translations) { + CONFIG *= build_translations } -#CONFIG *= easy_profiler -!contains(CONFIG, no_zint){ +!CONFIG(no_zint) { CONFIG *= zint } -!contains(CONGIG, no_svg){ +!CONFIG(no_svg) { QT *= svg CONFIG *= svg - DEFINES += HAVE_SVG + DEFINES *= HAVE_SVG } -INCLUDEPATH += $$PWD/3rdparty/easyprofiler/easy_profiler_core/include -DEPENDPATH += $$PWD/3rdparty/easyprofiler/easy_profiler_core/include - -contains(CONFIG, easy_profiler){ +CONFIG(easy_profiler) { message(EasyProfiler) - unix|win32: LIBS += -L$$PWD/3rdparty/easyprofiler/build/bin/ -leasy_profiler - greaterThan(QT_MAJOR_VERSION, 4){ - DEFINES += BUILD_WITH_EASY_PROFILER + INCLUDEPATH *= $$PWD/3rdparty/easyprofiler/easy_profiler_core/include + DEPENDPATH *= $$PWD/3rdparty/easyprofiler/easy_profiler_core/include + unix|win32: LIBS *= -L$$PWD/3rdparty/easyprofiler/build/bin/ -leasy_profiler + greaterThan(QT_MAJOR_VERSION, 4) { + DEFINES *= BUILD_WITH_EASY_PROFILER } } -!contains(CONFIG, qtscriptengine){ -greaterThan(QT_MAJOR_VERSION, 4){ -greaterThan(QT_MINOR_VERSION, 5){ - CONFIG *= qjsengine -} -lessThan(QT_MINOR_VERSION, 6){ - CONFIG *= qtscriptengine -} -} -lessThan(QT_MAJOR_VERSION, 5){ - CONFIG *= qtscriptengine -} +!CONFIG(qtscriptengine) { + greaterThan(QT_MAJOR_VERSION, 4) { + greaterThan(QT_MINOR_VERSION, 5) { + CONFIG *= qjsengine + } + lessThan(QT_MINOR_VERSION, 6) { + CONFIG *= qtscriptengine + } + } + lessThan(QT_MAJOR_VERSION, 5) { + CONFIG *= qtscriptengine + } } -contains(CONFIG, qtscriptengine){ +CONFIG(qtscriptengine) { CONFIG -= qjsengine QT *= script DEFINES *= USE_QTSCRIPTENGINE message(qtscriptengine) } -!contains(CONFIG, no_formdesigner){ +!CONFIG(no_formdesigner) { CONFIG *= dialogdesigner } -!contains(CONFIG, no_embedded_designer){ +!CONFIG(no_embedded_designer) { CONFIG *= embedded_designer - DEFINES += HAVE_REPORT_DESIGNER + DEFINES *= HAVE_REPORT_DESIGNER message(embedded designer) } ZINT_PATH = $$PWD/3rdparty/zint-2.6.1 -contains(CONFIG,zint){ +CONFIG(zint) { DEFINES *= HAVE_ZINT } @@ -68,11 +78,11 @@ greaterThan(QT_MAJOR_VERSION, 4) { QT *= uitools } -lessThan(QT_MAJOR_VERSION, 5){ +lessThan(QT_MAJOR_VERSION, 5) { CONFIG *= uitools } -CONFIG(release, debug|release){ +CONFIG(release, debug|release) { message(Release) BUILD_TYPE = release }else{ @@ -83,39 +93,43 @@ CONFIG(release, debug|release){ BUILD_DIR = $${BINARY_RESULT_DIR}/build/$${QT_VERSION} DEST_INCLUDE_DIR = $$PWD/include + unix{ ARCH_DIR = $${OUT_PWD}/unix ARCH_TYPE = unix + macx{ - ARCH_DIR = $${OUT_PWD}/macx - ARCH_TYPE = macx + ARCH_DIR = $${OUT_PWD}/macx + ARCH_TYPE = macx } + linux{ - !contains(QT_ARCH, x86_64){ + !contains(QT_ARCH, x86_64) { message("Compiling for 32bit system") - ARCH_DIR = $${OUT_PWD}/linux32 - ARCH_TYPE = linux32 + ARCH_DIR = $${OUT_PWD}/linux32 + ARCH_TYPE = linux32 }else{ message("Compiling for 64bit system") - ARCH_DIR = $${OUT_PWD}/linux64 - ARCH_TYPE = linux64 + ARCH_DIR = $${OUT_PWD}/linux64 + ARCH_TYPE = linux64 } } } + win32 { !contains(QT_ARCH, x86_64) { message("Compiling for 32bit system") - ARCH_DIR = $${OUT_PWD}/win32 - ARCH_TYPE = win32 + ARCH_DIR = $${OUT_PWD}/win32 + ARCH_TYPE = win32 } else { message("Compiling for 64bit system") - ARCH_DIR = $${OUT_PWD}/win64 - ARCH_TYPE = win64 + ARCH_DIR = $${OUT_PWD}/win64 + ARCH_TYPE = win64 } } -DEST_LIBS = $${BUILD_DIR}/$${ARCH_TYPE}/$${BUILD_TYPE}/lib -DEST_BINS = $${BUILD_DIR}/$${ARCH_TYPE}/$${BUILD_TYPE}/$${TARGET} +DEST_LIBS = $${BUILD_DIR}/$${ARCH_TYPE}/$${BUILD_TYPE}/lib +DEST_BINS = $${BUILD_DIR}/$${ARCH_TYPE}/$${BUILD_TYPE}/$${TARGET} MOC_DIR = $${ARCH_DIR}/$${BUILD_TYPE}/moc UI_DIR = $${ARCH_DIR}/$${BUILD_TYPE}/ui @@ -139,20 +153,20 @@ TRANSLATIONS_PATH = $$PWD/translations greaterThan(QT_MAJOR_VERSION, 4) { DEFINES *= HAVE_QT5 QT *= printsupport widgets - contains(QT,uitools){ + contains(QT, uitools) { message(uitools) DEFINES *= HAVE_UI_LOADER } - contains(CONFIG, qjsengine){ + CONFIG(qjsengine) { message(qjsengine) DEFINES *= USE_QJSENGINE QT *= qml } } -lessThan(QT_MAJOR_VERSION, 5){ +lessThan(QT_MAJOR_VERSION, 5) { DEFINES *= HAVE_QT4 - CONFIG(uitools){ + CONFIG(uitools) { message(uitools) DEFINES *= HAVE_UI_LOADER } diff --git a/console/console.pro b/console/console.pro index cea280f..f12bc2d 100644 --- a/console/console.pro +++ b/console/console.pro @@ -23,13 +23,12 @@ CONFIG(debug, debug|release) { } else { LIBS += -llimereport } -!contains(CONFIG, static_build){ - contains(CONFIG,zint){ - LIBS += -L$${DEST_LIBS} - CONFIG(debug, debug|release) { - LIBS += -lQtZintd - } else { - LIBS += -lQtZint - } + +!CONFIG(static_build) : CONFIG(zint) { + LIBS += -L$${DEST_LIBS} + CONFIG(debug, debug|release) { + LIBS += -lQtZintd + } else { + LIBS += -lQtZint } } diff --git a/demo_r1/demo_r1.pro b/demo_r1/demo_r1.pro index 36505d3..8b4266c 100644 --- a/demo_r1/demo_r1.pro +++ b/demo_r1/demo_r1.pro @@ -2,56 +2,56 @@ include(../common.pri) QT += core gui CONFIG(release, debug|release) { - TARGET = LRDemo_r1 + TARGET = LRDemo_r1 } else { - TARGET = LRDemo_r1d + TARGET = LRDemo_r1d } TEMPLATE = app -SOURCES += main.cpp\ - mainwindow.cpp +SOURCES += main.cpp \ + mainwindow.cpp -HEADERS += mainwindow.h +HEADERS += mainwindow.h -FORMS += mainwindow.ui +FORMS += mainwindow.ui INCLUDEPATH += $$PWD/../include DEPENDPATH += $$PWD/../include RESOURCES += \ - r1.qrc + r1.qrc EXTRA_DIR += $$PWD/demo_reports DEST_DIR = $${DEST_BINS} REPORTS_DIR = $${DEST_DIR} macx{ - CONFIG += app_bundle + CONFIG += app_bundle } unix:{ - DESTDIR = $$DEST_DIR - # QMAKE_POST_LINK += mkdir -p $$quote($$REPORTS_DIR) | - QMAKE_POST_LINK += $$QMAKE_COPY_DIR \"$$EXTRA_DIR\" \"$$REPORTS_DIR\" $$escape_expand(\n\t) + DESTDIR = $$DEST_DIR + # QMAKE_POST_LINK += mkdir -p $$quote($$REPORTS_DIR) | + QMAKE_POST_LINK += $$QMAKE_COPY_DIR \"$$EXTRA_DIR\" \"$$REPORTS_DIR\" $$escape_expand(\n\t) - linux{ - #Link share lib to ../lib rpath - QMAKE_LFLAGS += -Wl,--rpath=\\\$\$ORIGIN - QMAKE_LFLAGS += -Wl,--rpath=\\\$\$ORIGIN/lib - QMAKE_LFLAGS += -Wl,--rpath=\\\$\$ORIGIN/../lib - QMAKE_LFLAGS_RPATH += #. .. ./libs - } - target.path = $${DEST_DIR} - INSTALLS = target + linux{ + #Link share lib to ../lib rpath + QMAKE_LFLAGS += -Wl,--rpath=\\\$\$ORIGIN + QMAKE_LFLAGS += -Wl,--rpath=\\\$\$ORIGIN/lib + QMAKE_LFLAGS += -Wl,--rpath=\\\$\$ORIGIN/../lib + QMAKE_LFLAGS_RPATH += #. .. ./libs + } + target.path = $${DEST_DIR} + INSTALLS = target } win32 { DESTDIR = $$DEST_DIR - contains(QMAKE_HOST.os, Linux){ + contains(QMAKE_HOST.os, Linux) { QMAKE_POST_LINK += $$QMAKE_COPY_DIR \"$$EXTRA_DIR\" \"$$REPORTS_DIR\" $$escape_expand(\n\t) } else { - EXTRA_DIR ~= s,/,\\,g + EXTRA_DIR ~= s,/,\\,g DEST_DIR ~= s,/,\\,g REPORTS_DIR ~= s,/,\\,g RC_FILE += mainicon.rc @@ -67,13 +67,11 @@ CONFIG(debug, debug|release) { } message($$LIBS) -!contains(CONFIG, static_build){ - contains(CONFIG,zint){ - LIBS += -L$${DEST_LIBS} - CONFIG(debug, debug|release) { - LIBS += -lQtZintd - } else { - LIBS += -lQtZint - } - } +!CONFIG(static_build) : CONFIG(zint) { + LIBS += -L$${DEST_LIBS} + CONFIG(debug, debug|release) { + LIBS += -lQtZintd + } else { + LIBS += -lQtZint + } } diff --git a/demo_r1/main.cpp b/demo_r1/main.cpp index 06ac390..72c8163 100644 --- a/demo_r1/main.cpp +++ b/demo_r1/main.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/demo_r1/mainwindow.cpp b/demo_r1/mainwindow.cpp index 348cbb1..a7ea5c8 100644 --- a/demo_r1/mainwindow.cpp +++ b/demo_r1/mainwindow.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/demo_r1/mainwindow.h b/demo_r1/mainwindow.h index e8d7ff1..271a907 100644 --- a/demo_r1/mainwindow.h +++ b/demo_r1/mainwindow.h @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/demo_r2/demo_r2.pro b/demo_r2/demo_r2.pro index c8abe1f..1a77367 100644 --- a/demo_r2/demo_r2.pro +++ b/demo_r2/demo_r2.pro @@ -1,16 +1,16 @@ include(../common.pri) QT += core gui -CONFIG(release, debug|release){ - TARGET = LRDemo_r2 +CONFIG(release, debug|release) { + TARGET = LRDemo_r2 } else { - TARGET = LRDemo_r2d + TARGET = LRDemo_r2d } TEMPLATE = app -SOURCES += main.cpp\ - mainwindow.cpp +SOURCES += main.cpp \ + mainwindow.cpp HEADERS += mainwindow.h @@ -20,7 +20,7 @@ INCLUDEPATH += $$PWD/../include DEPENDPATH += $$PWD/../include RESOURCES += \ - demo_r2.qrc + demo_r2.qrc EXTRA_DIR += $$PWD/demo_reports @@ -34,26 +34,26 @@ macx{ unix:{ DESTDIR = $$DEST_DIR QMAKE_POST_LINK += $$QMAKE_COPY_DIR \"$$EXTRA_DIR\" \"$$REPORTS_DIR\" $$escape_expand(\n\t) - linux{ - #Link share lib to ../lib rpath - QMAKE_LFLAGS += -Wl,--rpath=\\\$\$ORIGIN - QMAKE_LFLAGS += -Wl,--rpath=\\\$\$ORIGIN/lib - QMAKE_LFLAGS += -Wl,--rpath=\\\$\$ORIGIN/../lib - QMAKE_LFLAGS_RPATH += #. .. ./libs - } + linux{ + #Link share lib to ../lib rpath + QMAKE_LFLAGS += -Wl,--rpath=\\\$\$ORIGIN + QMAKE_LFLAGS += -Wl,--rpath=\\\$\$ORIGIN/lib + QMAKE_LFLAGS += -Wl,--rpath=\\\$\$ORIGIN/../lib + QMAKE_LFLAGS_RPATH += #. .. ./libs + } target.path = $${DEST_DIR} INSTALLS = target } win32 { DESTDIR = $$DEST_DIR - contains(QMAKE_HOST.os, Linux){ + contains(QMAKE_HOST.os, Linux) { QMAKE_POST_LINK += $$QMAKE_COPY_DIR \"$$EXTRA_DIR\" \"$$REPORTS_DIR\" $$escape_expand(\n\t) } else { - EXTRA_DIR ~= s,/,\\,g + EXTRA_DIR ~= s,/,\\,g DEST_DIR ~= s,/,\\,g - REPORTS_DIR ~= s,/,\\,g - RC_FILE += mainicon.rc + REPORTS_DIR ~= s,/,\\,g + RC_FILE += mainicon.rc QMAKE_POST_LINK += $$QMAKE_COPY_DIR \"$$EXTRA_DIR\" \"$$REPORTS_DIR\\demo_reports\" $$escape_expand(\\n\\t) } } @@ -65,13 +65,11 @@ CONFIG(debug, debug|release) { LIBS += -llimereport } -!contains(CONFIG, static_build){ - contains(CONFIG,zint){ - LIBS += -L$${DEST_LIBS} - CONFIG(debug, debug|release) { - LIBS += -lQtZintd - } else { - LIBS += -lQtZint - } - } +!CONFIG(static_build) : CONFIG(zint) { + LIBS += -L$${DEST_LIBS} + CONFIG(debug, debug|release) { + LIBS += -lQtZintd + } else { + LIBS += -lQtZint + } } diff --git a/designer/designer.pro b/designer/designer.pro index 3f9cb8e..318f29a 100644 --- a/designer/designer.pro +++ b/designer/designer.pro @@ -1,18 +1,19 @@ include(../common.pri) QT += core gui -contains(CONFIG,release) { - TARGET = LRDesigner +CONFIG(release) { + TARGET = LRDesigner } else { - TARGET = LRDesignerd + TARGET = LRDesignerd } + TEMPLATE = app HEADERS += \ - designersettingmanager.h + designersettingmanager.h SOURCES += main.cpp \ - designersettingmanager.cpp + designersettingmanager.cpp INCLUDEPATH += $$PWD/../include DEPENDPATH += $$PWD/../include @@ -51,17 +52,15 @@ win32 { LIBS += -L$${DEST_LIBS} CONFIG(debug, debug|release) { - LIBS += -llimereportd + LIBS += -llimereportd } else { - LIBS += -llimereport + LIBS += -llimereport } -!contains(CONFIG, static_build){ - contains(CONFIG,zint){ - CONFIG(debug, debug|release) { - LIBS += -L$${DEST_LIBS} -lQtZintd - } else { - LIBS += -L$${DEST_LIBS} -lQtZint - } +!CONFIG(static_build) : CONFIG(zint) { + CONFIG(debug, debug|release) { + LIBS += -L$${DEST_LIBS} -lQtZintd + } else { + LIBS += -L$${DEST_LIBS} -lQtZint } } diff --git a/designer_plugin/designer_plugin.pro b/designer_plugin/designer_plugin.pro index 219a796..e610298 100644 --- a/designer_plugin/designer_plugin.pro +++ b/designer_plugin/designer_plugin.pro @@ -4,43 +4,43 @@ include(../common.pri) include(../limereport/limereport.pri) include(../limereport/designer.pri) -contains(CONFIG,release) { - TARGET = designer_plugin +CONFIG(release) { + TARGET = designer_plugin } else { - TARGET = designer_plugind + TARGET = designer_plugind } TEMPLATE = lib CONFIG += plugin HEADERS += \ - lrdesignerplugin.h + lrdesignerplugin.h SOURCES += \ - lrdesignerplugin.cpp + lrdesignerplugin.cpp INCLUDEPATH += $$PWD/../include DEPENDPATH += $$PWD/../include macx{ - CONFIG += lib_bundle - CONFIG += -dll + CONFIG += lib_bundle + CONFIG += -dll } -DESTDIR = $${DEST_LIBS} +DESTDIR = $${DEST_LIBS} unix { target.path = $${DESTDIR} INSTALLS = target } -contains(CONFIG,zint){ +CONFIG(zint) { message(zint) INCLUDEPATH += $$ZINT_PATH/backend $$ZINT_PATH/backend_qt DEPENDPATH += $$ZINT_PATH/backend $$ZINT_PATH/backend_qt - LIBS += -L$${DEST_LIBS} - CONFIG(debug, debug|release){ - LIBS += -lQtZintd - } else { - LIBS += -lQtZint - } + LIBS += -L$${DEST_LIBS} + CONFIG(debug, debug|release) { + LIBS += -lQtZintd + } else { + LIBS += -lQtZint + } } diff --git a/include/lrdatasourcemanagerintf.h b/include/lrdatasourcemanagerintf.h index 040dd1d..c43b239 100644 --- a/include/lrdatasourcemanagerintf.h +++ b/include/lrdatasourcemanagerintf.h @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/include/lrglobal.cpp b/include/lrglobal.cpp index 55ab31b..5d68a1d 100644 --- a/include/lrglobal.cpp +++ b/include/lrglobal.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/include/lrglobal.h b/include/lrglobal.h index 3388fe9..c7a9a2e 100644 --- a/include/lrglobal.h +++ b/include/lrglobal.h @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/include/lrreportengine.h b/include/lrreportengine.h index 6509302..4fdfa37 100644 --- a/include/lrreportengine.h +++ b/include/lrreportengine.h @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/include/lrscriptenginemanagerintf.h b/include/lrscriptenginemanagerintf.h index a8a7c63..eaad8fd 100644 --- a/include/lrscriptenginemanagerintf.h +++ b/include/lrscriptenginemanagerintf.h @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport.pro b/limereport.pro index 9bc801f..27dbc22 100644 --- a/limereport.pro +++ b/limereport.pro @@ -1,31 +1,23 @@ TEMPLATE = subdirs -!contains(CONFIG, no_zint){ - CONFIG += zint -} - include(common.pri) -contains(CONFIG, zint){ + +CONFIG += ordered + +CONFIG(zint) { SUBDIRS += 3rdparty } -export($$CONFIG) - -CONFIG += ordered SUBDIRS += \ limereport \ demo_r1 \ demo_r2 \ designer -greaterThan(QT_MAJOR_VERSION, 4){ -greaterThan(QT_MINOR_VERSION, 1){ - SUBDIRS += console - } +greaterThan(QT_MAJOR_VERSION, 4) : greaterThan(QT_MINOR_VERSION, 1) { + SUBDIRS += console } -!contains(CONFIG, embedded_designer){ -!contains(CONFIG, static_build){ -SUBDIRS += designer_plugin -} +!CONFIG(embedded_designer) : !CONFIG(static_build) { + SUBDIRS += designer_plugin } diff --git a/limereport/bands/lrdataband.cpp b/limereport/bands/lrdataband.cpp index 7119440..9e81ba1 100644 --- a/limereport/bands/lrdataband.cpp +++ b/limereport/bands/lrdataband.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/bands/lrdataband.h b/limereport/bands/lrdataband.h index a35ec60..ba0395c 100644 --- a/limereport/bands/lrdataband.h +++ b/limereport/bands/lrdataband.h @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/bands/lrgroupbands.cpp b/limereport/bands/lrgroupbands.cpp index 6865ce5..569e0df 100644 --- a/limereport/bands/lrgroupbands.cpp +++ b/limereport/bands/lrgroupbands.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/bands/lrgroupbands.h b/limereport/bands/lrgroupbands.h index 42285d8..62b9b16 100644 --- a/limereport/bands/lrgroupbands.h +++ b/limereport/bands/lrgroupbands.h @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/bands/lrpagefooter.cpp b/limereport/bands/lrpagefooter.cpp index 9793487..0cb7091 100644 --- a/limereport/bands/lrpagefooter.cpp +++ b/limereport/bands/lrpagefooter.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/bands/lrpagefooter.h b/limereport/bands/lrpagefooter.h index 5c18c7c..ce3ca59 100644 --- a/limereport/bands/lrpagefooter.h +++ b/limereport/bands/lrpagefooter.h @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/bands/lrpageheader.cpp b/limereport/bands/lrpageheader.cpp index 26fc9c6..7a08599 100644 --- a/limereport/bands/lrpageheader.cpp +++ b/limereport/bands/lrpageheader.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/bands/lrpageheader.h b/limereport/bands/lrpageheader.h index b078ae1..ccfdff1 100644 --- a/limereport/bands/lrpageheader.h +++ b/limereport/bands/lrpageheader.h @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/bands/lrreportfooter.cpp b/limereport/bands/lrreportfooter.cpp index ead4e60..41c50e0 100644 --- a/limereport/bands/lrreportfooter.cpp +++ b/limereport/bands/lrreportfooter.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/bands/lrreportfooter.h b/limereport/bands/lrreportfooter.h index 140ad1e..5ffcc0c 100644 --- a/limereport/bands/lrreportfooter.h +++ b/limereport/bands/lrreportfooter.h @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/bands/lrreportheader.cpp b/limereport/bands/lrreportheader.cpp index e08f418..af8e924 100644 --- a/limereport/bands/lrreportheader.cpp +++ b/limereport/bands/lrreportheader.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/bands/lrreportheader.h b/limereport/bands/lrreportheader.h index 27d8518..0faa493 100644 --- a/limereport/bands/lrreportheader.h +++ b/limereport/bands/lrreportheader.h @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/bands/lrsubdetailband.cpp b/limereport/bands/lrsubdetailband.cpp index bfdcde3..3e74d7c 100644 --- a/limereport/bands/lrsubdetailband.cpp +++ b/limereport/bands/lrsubdetailband.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/bands/lrsubdetailband.h b/limereport/bands/lrsubdetailband.h index 7ff6127..b50b1c2 100644 --- a/limereport/bands/lrsubdetailband.h +++ b/limereport/bands/lrsubdetailband.h @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/base/lrattribsabstractfactory.h b/limereport/base/lrattribsabstractfactory.h index 3499253..4fc7a0f 100644 --- a/limereport/base/lrattribsabstractfactory.h +++ b/limereport/base/lrattribsabstractfactory.h @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/base/lrsimpleabstractfactory.h b/limereport/base/lrsimpleabstractfactory.h index 3722a8b..3406ee0 100644 --- a/limereport/base/lrsimpleabstractfactory.h +++ b/limereport/base/lrsimpleabstractfactory.h @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/base/lrsingleton.h b/limereport/base/lrsingleton.h index f011872..87c5255 100644 --- a/limereport/base/lrsingleton.h +++ b/limereport/base/lrsingleton.h @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/databrowser/lrconnectiondialog.cpp b/limereport/databrowser/lrconnectiondialog.cpp index 07c53a5..a4bf8b6 100644 --- a/limereport/databrowser/lrconnectiondialog.cpp +++ b/limereport/databrowser/lrconnectiondialog.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/databrowser/lrconnectiondialog.h b/limereport/databrowser/lrconnectiondialog.h index 12140b1..e9ece7c 100644 --- a/limereport/databrowser/lrconnectiondialog.h +++ b/limereport/databrowser/lrconnectiondialog.h @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/databrowser/lrdatabrowser.cpp b/limereport/databrowser/lrdatabrowser.cpp index 32e9995..4a34745 100644 --- a/limereport/databrowser/lrdatabrowser.cpp +++ b/limereport/databrowser/lrdatabrowser.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/databrowser/lrdatabrowser.h b/limereport/databrowser/lrdatabrowser.h index f0c5144..edab5ef 100644 --- a/limereport/databrowser/lrdatabrowser.h +++ b/limereport/databrowser/lrdatabrowser.h @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/databrowser/lrdatabrowsertree.cpp b/limereport/databrowser/lrdatabrowsertree.cpp index 9128bf4..2625602 100644 --- a/limereport/databrowser/lrdatabrowsertree.cpp +++ b/limereport/databrowser/lrdatabrowsertree.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/databrowser/lrdatabrowsertree.h b/limereport/databrowser/lrdatabrowsertree.h index 0614cdc..3cbcdff 100644 --- a/limereport/databrowser/lrdatabrowsertree.h +++ b/limereport/databrowser/lrdatabrowsertree.h @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/databrowser/lrsqleditdialog.cpp b/limereport/databrowser/lrsqleditdialog.cpp index 8f613b5..7fe874f 100644 --- a/limereport/databrowser/lrsqleditdialog.cpp +++ b/limereport/databrowser/lrsqleditdialog.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/databrowser/lrsqleditdialog.h b/limereport/databrowser/lrsqleditdialog.h index 28dcffd..8f3e29a 100644 --- a/limereport/databrowser/lrsqleditdialog.h +++ b/limereport/databrowser/lrsqleditdialog.h @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/databrowser/lrvariabledialog.cpp b/limereport/databrowser/lrvariabledialog.cpp index 7c5b1a0..6883acb 100644 --- a/limereport/databrowser/lrvariabledialog.cpp +++ b/limereport/databrowser/lrvariabledialog.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/databrowser/lrvariabledialog.h b/limereport/databrowser/lrvariabledialog.h index 49ba046..61211a7 100644 --- a/limereport/databrowser/lrvariabledialog.h +++ b/limereport/databrowser/lrvariabledialog.h @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/designer.pri b/limereport/designer.pri index 72bd275..13bf6ea 100644 --- a/limereport/designer.pri +++ b/limereport/designer.pri @@ -1,8 +1,9 @@ include(../common.pri) -DEFINES+=HAVE_REPORT_DESIGNER -contains(CONFIG,dialogdesigner){ - include($$REPORT_PATH/dialogdesigner/dialogdesigner.pri) +DEFINES += HAVE_REPORT_DESIGNER + +CONFIG(dialogdesigner) { + include($$REPORT_PATH/dialogdesigner/dialogdesigner.pri) } INCLUDEPATH += $$REPORT_PATH/objectinspector \ @@ -51,7 +52,7 @@ SOURCES += \ $$REPORT_PATH/lrreportdesignwidget.cpp \ $$REPORT_PATH/lrreportdesignwindow.cpp -contains(CONFIG, svg){ +CONFIG(svg) { SOURCES += \ $$REPORT_PATH/objectinspector/editors/lrsvgeditor.cpp \ $$REPORT_PATH/objectinspector/propertyItems/lrsvgpropitem.cpp @@ -100,7 +101,7 @@ HEADERS += \ $$REPORT_PATH/lrreportdesignwidget.h \ $$REPORT_PATH/lrreportdesignwindow.h -contains(CONFIG, svg){ +contains(CONFIG, svg) { HEADERS += \ $$REPORT_PATH/objectinspector/editors/lrsvgeditor.h \ $$REPORT_PATH/objectinspector/propertyItems/lrsvgpropitem.h diff --git a/limereport/dialogdesigner/3rdparty/qtcreator/designerintegrationv2/designerintegration.pri b/limereport/dialogdesigner/3rdparty/qtcreator/designerintegrationv2/designerintegration.pri index f3a02f6..e86cac8 100644 --- a/limereport/dialogdesigner/3rdparty/qtcreator/designerintegrationv2/designerintegration.pri +++ b/limereport/dialogdesigner/3rdparty/qtcreator/designerintegrationv2/designerintegration.pri @@ -1,11 +1,11 @@ INCLUDEPATH *= $$PWD $$PWD/.. SOURCES += $$PWD/widgethost.cpp \ - $$PWD/sizehandlerect.cpp \ - $$PWD/formresizer.cpp + $$PWD/sizehandlerect.cpp \ + $$PWD/formresizer.cpp HEADERS += $$PWD/widgethost.h \ - $$PWD/sizehandlerect.h \ - $$PWD/formresizer.h \ - $$PWD/widgethostconstants.h \ - $$PWD/../namespace_global.h + $$PWD/sizehandlerect.h \ + $$PWD/formresizer.h \ + $$PWD/widgethostconstants.h \ + $$PWD/../namespace_global.h diff --git a/limereport/dialogdesigner/dialogdesigner.pri b/limereport/dialogdesigner/dialogdesigner.pri index 960b7c3..7d2cef6 100644 --- a/limereport/dialogdesigner/dialogdesigner.pri +++ b/limereport/dialogdesigner/dialogdesigner.pri @@ -1,27 +1,25 @@ include(../../common.pri) include($$PWD/3rdparty/qtcreator/designerintegrationv2/designerintegration.pri) + INCLUDEPATH *= $$PWD/3rdparty/designer -greaterThan(QT_MAJOR_VERSION, 4) { - contains(QT,uitools){ + +greaterThan(QT_MAJOR_VERSION, 4) : contains(QT, uitools) { DEFINES += HAVE_QTDESIGNER_INTEGRATION - } } -lessThan(QT_MAJOR_VERSION, 5){ - contains(CONFIG,uitools){ + +lessThan(QT_MAJOR_VERSION, 5) : CONFIG(uitools) { DEFINES += HAVE_QTDESIGNER_INTEGRATION - } } greaterThan(QT_MAJOR_VERSION, 4) { QT *= designer designercomponents-private - } else { - CONFIG *= designer - qtAddLibrary( QtDesignerComponents ) + CONFIG *= designer + qtAddLibrary(QtDesignerComponents) } SOURCES += $$PWD/lrdialogdesigner.cpp HEADERS += $$PWD/lrdialogdesigner.h RESOURCES += \ - $$PWD/dialogdesigner.qrc + $$PWD/dialogdesigner.qrc diff --git a/limereport/items/editors/lrfonteditorwidget.cpp b/limereport/items/editors/lrfonteditorwidget.cpp index 3a8cf0d..6c6cfea 100644 --- a/limereport/items/editors/lrfonteditorwidget.cpp +++ b/limereport/items/editors/lrfonteditorwidget.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/items/editors/lrfonteditorwidget.h b/limereport/items/editors/lrfonteditorwidget.h index f8f9b96..2845988 100644 --- a/limereport/items/editors/lrfonteditorwidget.h +++ b/limereport/items/editors/lrfonteditorwidget.h @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/items/editors/lritemeditorwidget.cpp b/limereport/items/editors/lritemeditorwidget.cpp index d81af5e..354ff44 100644 --- a/limereport/items/editors/lritemeditorwidget.cpp +++ b/limereport/items/editors/lritemeditorwidget.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/items/editors/lritemeditorwidget.h b/limereport/items/editors/lritemeditorwidget.h index 733eac0..3c5c320 100644 --- a/limereport/items/editors/lritemeditorwidget.h +++ b/limereport/items/editors/lritemeditorwidget.h @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/items/editors/lritemsaligneditorwidget.cpp b/limereport/items/editors/lritemsaligneditorwidget.cpp index 5595928..c2b97e2 100644 --- a/limereport/items/editors/lritemsaligneditorwidget.cpp +++ b/limereport/items/editors/lritemsaligneditorwidget.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/items/editors/lritemsaligneditorwidget.h b/limereport/items/editors/lritemsaligneditorwidget.h index 5231d2f..3ce4213 100644 --- a/limereport/items/editors/lritemsaligneditorwidget.h +++ b/limereport/items/editors/lritemsaligneditorwidget.h @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/items/editors/lritemsborderseditorwidget.cpp b/limereport/items/editors/lritemsborderseditorwidget.cpp index 44cc897..a8945a9 100644 --- a/limereport/items/editors/lritemsborderseditorwidget.cpp +++ b/limereport/items/editors/lritemsborderseditorwidget.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/items/editors/lritemsborderseditorwidget.h b/limereport/items/editors/lritemsborderseditorwidget.h index 998251c..233e5f5 100644 --- a/limereport/items/editors/lritemsborderseditorwidget.h +++ b/limereport/items/editors/lritemsborderseditorwidget.h @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/items/editors/lrtextalignmenteditorwidget.cpp b/limereport/items/editors/lrtextalignmenteditorwidget.cpp index 8874d13..abdada0 100644 --- a/limereport/items/editors/lrtextalignmenteditorwidget.cpp +++ b/limereport/items/editors/lrtextalignmenteditorwidget.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/items/editors/lrtextalignmenteditorwidget.h b/limereport/items/editors/lrtextalignmenteditorwidget.h index 4590be3..958f25a 100644 --- a/limereport/items/editors/lrtextalignmenteditorwidget.h +++ b/limereport/items/editors/lrtextalignmenteditorwidget.h @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/items/lralignpropitem.cpp b/limereport/items/lralignpropitem.cpp index 1321b4f..5edb725 100644 --- a/limereport/items/lralignpropitem.cpp +++ b/limereport/items/lralignpropitem.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/items/lralignpropitem.h b/limereport/items/lralignpropitem.h index 61e4b7f..0dae738 100644 --- a/limereport/items/lralignpropitem.h +++ b/limereport/items/lralignpropitem.h @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/items/lrbarcodeitem.cpp b/limereport/items/lrbarcodeitem.cpp index bbdcfee..78a242c 100644 --- a/limereport/items/lrbarcodeitem.cpp +++ b/limereport/items/lrbarcodeitem.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/items/lrbarcodeitem.h b/limereport/items/lrbarcodeitem.h index 12f1195..e3e9c1a 100644 --- a/limereport/items/lrbarcodeitem.h +++ b/limereport/items/lrbarcodeitem.h @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/items/lrhorizontallayout.cpp b/limereport/items/lrhorizontallayout.cpp index f4f51ef..b7c2268 100644 --- a/limereport/items/lrhorizontallayout.cpp +++ b/limereport/items/lrhorizontallayout.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/items/lrhorizontallayout.h b/limereport/items/lrhorizontallayout.h index fcd9e93..fa442e2 100644 --- a/limereport/items/lrhorizontallayout.h +++ b/limereport/items/lrhorizontallayout.h @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/items/lrimageitem.cpp b/limereport/items/lrimageitem.cpp index a58531b..02f7daa 100644 --- a/limereport/items/lrimageitem.cpp +++ b/limereport/items/lrimageitem.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/items/lrimageitem.h b/limereport/items/lrimageitem.h index bdcfdc9..274a183 100644 --- a/limereport/items/lrimageitem.h +++ b/limereport/items/lrimageitem.h @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/items/lrshapeitem.cpp b/limereport/items/lrshapeitem.cpp index 4bef04b..875cb34 100644 --- a/limereport/items/lrshapeitem.cpp +++ b/limereport/items/lrshapeitem.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/items/lrshapeitem.h b/limereport/items/lrshapeitem.h index 837d105..69a4a31 100644 --- a/limereport/items/lrshapeitem.h +++ b/limereport/items/lrshapeitem.h @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/items/lrsimpletagparser.cpp b/limereport/items/lrsimpletagparser.cpp index e5c5c3a..c608e7f 100644 --- a/limereport/items/lrsimpletagparser.cpp +++ b/limereport/items/lrsimpletagparser.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/items/lrsimpletagparser.h b/limereport/items/lrsimpletagparser.h index 6463edc..ea7603c 100644 --- a/limereport/items/lrsimpletagparser.h +++ b/limereport/items/lrsimpletagparser.h @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/items/lrsubitemparentpropitem.cpp b/limereport/items/lrsubitemparentpropitem.cpp index 61ff802..cfb8504 100644 --- a/limereport/items/lrsubitemparentpropitem.cpp +++ b/limereport/items/lrsubitemparentpropitem.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/items/lrsubitemparentpropitem.h b/limereport/items/lrsubitemparentpropitem.h index 9aa420e..3733c75 100644 --- a/limereport/items/lrsubitemparentpropitem.h +++ b/limereport/items/lrsubitemparentpropitem.h @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/items/lrtextitem.cpp b/limereport/items/lrtextitem.cpp index 50de9d5..4e8e111 100644 --- a/limereport/items/lrtextitem.cpp +++ b/limereport/items/lrtextitem.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/items/lrtextitem.h b/limereport/items/lrtextitem.h index d0611b0..2009917 100644 --- a/limereport/items/lrtextitem.h +++ b/limereport/items/lrtextitem.h @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/items/lrtextitemeditor.cpp b/limereport/items/lrtextitemeditor.cpp index 8299fbc..e8c5770 100644 --- a/limereport/items/lrtextitemeditor.cpp +++ b/limereport/items/lrtextitemeditor.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/items/lrtextitemeditor.h b/limereport/items/lrtextitemeditor.h index b9e2750..b2c97ef 100644 --- a/limereport/items/lrtextitemeditor.h +++ b/limereport/items/lrtextitemeditor.h @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/limereport.pri b/limereport/limereport.pri index 83879ba..c014955 100644 --- a/limereport/limereport.pri +++ b/limereport/limereport.pri @@ -1,6 +1,6 @@ include(../common.pri) -contains(CONFIG, embedded_designer){ +contains(CONFIG, embedded_designer) { include(designer.pri) message(embedded designer) } @@ -76,17 +76,16 @@ SOURCES += \ $$REPORT_PATH/exporters/lrpdfexporter.cpp \ $$REPORT_PATH/lrpreparedpages.cpp - -contains(CONFIG, staticlib){ +CONFIG(staticlib) { SOURCES += $$REPORT_PATH/lrfactoryinitializer.cpp } -contains(CONFIG, zint){ +CONFIG(zint) { SOURCES += $$REPORT_PATH/items/lrbarcodeitem.cpp } -contains(CONFIG, svg){ - SOURCES += $$REPORT_PATH/items/lrsvgitem.cpp \ +CONFIG(svg) { + SOURCES += $$REPORT_PATH/items/lrsvgitem.cpp \ } HEADERS += \ @@ -171,15 +170,15 @@ HEADERS += \ $$REPORT_PATH/lrpreparedpages.h \ $$REPORT_PATH/lrpreparedpagesintf.h -contains(CONFIG, staticlib){ +CONFIG(staticlib) { HEADERS += $$REPORT_PATH/lrfactoryinitializer.h } -contains(CONFIG,zint){ +CONFIG(zint) { HEADERS += $$REPORT_PATH/items/lrbarcodeitem.h } -contains(CONFIG, svg){ +CONFIG(svg) { HEADERS += $$REPORT_PATH/items/lrsvgitem.h } @@ -196,4 +195,3 @@ FORMS += \ RESOURCES += \ $$REPORT_PATH/report.qrc \ $$REPORT_PATH/items/items.qrc - diff --git a/limereport/limereport.pro b/limereport/limereport.pro index c6f8c89..1389ae2 100644 --- a/limereport/limereport.pro +++ b/limereport/limereport.pro @@ -1,4 +1,4 @@ -CONFIG(debug, debug|release){ +CONFIG(debug, debug|release) { TARGET = limereportd } else { TARGET = limereport @@ -6,11 +6,11 @@ CONFIG(debug, debug|release){ TEMPLATE = lib -contains(CONFIG, static_build){ +CONFIG(static_build) { CONFIG += staticlib } -!contains(CONFIG, staticlib){ +!CONFIG(staticlib) { CONFIG += lib CONFIG += dll } @@ -19,14 +19,14 @@ CONFIG += create_prl CONFIG += link_prl macx{ - CONFIG -= dll - CONFIG += lib_bundle - CONFIG += plugin + CONFIG -= dll + CONFIG += lib_bundle + CONFIG += plugin } DEFINES += LIMEREPORT_EXPORTS -contains(CONFIG, staticlib){ +CONFIG(staticlib) { DEFINES += HAVE_STATIC_BUILD DEFINES += QZINT_STATIC_BUILD message(STATIC_BUILD) @@ -47,15 +47,15 @@ EXTRA_FILES += \ include(limereport.pri) unix:{ - DESTDIR = $${DEST_LIBS} + DESTDIR = $${DEST_LIBS} linux{ QMAKE_POST_LINK += mkdir -p \"$${DEST_INCLUDE_DIR}\" $$escape_expand(\\n\\t) # qmake need make mkdir -p on subdirs more than root/ - for(FILE,EXTRA_FILES){ + for(FILE,EXTRA_FILES) { QMAKE_POST_LINK += $$QMAKE_COPY \"$$FILE\" \"$${DEST_INCLUDE_DIR}\" $$escape_expand(\\n\\t) # inside of libs make /include/files } } macx{ - for(FILE,EXTRA_FILES){ + for(FILE,EXTRA_FILES) { QMAKE_POST_LINK += $$QMAKE_COPY \"$$FILE\" \"$${DEST_INCLUDE_DIR}\" $$escape_expand(\\n\\t) } QMAKE_POST_LINK += mkdir -p \"$${DESTDIR}/include\" $$escape_expand(\\n\\t) @@ -65,9 +65,9 @@ unix:{ win32 { DESTDIR = $${DEST_LIBS} - contains(QMAKE_HOST.os, Linux){ + contains(QMAKE_HOST.os, Linux) { QMAKE_POST_LINK += mkdir -p \"$${DEST_INCLUDE_DIR}\" $$escape_expand(\\n\\t) # qmake need make mkdir -p on subdirs more than root/ - for(FILE,EXTRA_FILES){ + for(FILE,EXTRA_FILES) { QMAKE_POST_LINK += $$QMAKE_COPY \"$$FILE\" \"$${DEST_INCLUDE_DIR}\" $$escape_expand(\\n\\t) # inside of libs make /include/files } QMAKE_POST_LINK += $$QMAKE_COPY_DIR \"$${DEST_INCLUDE_DIR}\" \"$${DESTDIR}\" @@ -78,23 +78,23 @@ win32 { DEST_DIR ~= s,/,\\,g DEST_INCLUDE_DIR ~= s,/,\\,g - for(FILE,EXTRA_FILES){ + for(FILE,EXTRA_FILES) { QMAKE_POST_LINK += $$QMAKE_COPY \"$$FILE\" \"$${DEST_INCLUDE_DIR}\" $$escape_expand(\\n\\t) } QMAKE_POST_LINK += $$QMAKE_COPY_DIR \"$${DEST_INCLUDE_DIR}\" \"$${DEST_DIR}\" } } -contains(CONFIG,zint){ +CONFIG(zint) { message(zint) INCLUDEPATH += $$ZINT_PATH/backend $$ZINT_PATH/backend_qt DEPENDPATH += $$ZINT_PATH/backend $$ZINT_PATH/backend_qt - LIBS += -L$${DEST_LIBS} - CONFIG(release, debug|release){ - LIBS += -lQtZint - } else { - LIBS += -lQtZintd - } + LIBS += -L$${DEST_LIBS} + CONFIG(release, debug|release) { + LIBS += -lQtZint + } else { + LIBS += -lQtZintd + } } #### Install mkspecs, headers and libs to QT_INSTALL_DIR @@ -112,7 +112,7 @@ INSTALLS += target ####Automatically build required translation files (*.qm) -contains(CONFIG,build_translations){ +CONFIG(build_translations) { LANGUAGES = ru es ar fr zh pl defineReplace(prependAll) { @@ -139,5 +139,3 @@ contains(CONFIG,build_translations){ } #### EN AUTOMATIC TRANSLATIONS - - diff --git a/limereport/lraboutdialog.cpp b/limereport/lraboutdialog.cpp index 96388ba..57cddd6 100644 --- a/limereport/lraboutdialog.cpp +++ b/limereport/lraboutdialog.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/lraboutdialog.h b/limereport/lraboutdialog.h index 62c2ff9..c823be0 100644 --- a/limereport/lraboutdialog.h +++ b/limereport/lraboutdialog.h @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/lraboutdialog.ui b/limereport/lraboutdialog.ui index dea24a2..89ed655 100644 --- a/limereport/lraboutdialog.ui +++ b/limereport/lraboutdialog.ui @@ -42,7 +42,7 @@ p, li { white-space: pre-wrap; } <p align="justify" style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:11pt; text-decoration: underline; color:#0000ff;"><br /></p> <p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:10pt; font-weight:600;">This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.</span></p> <p align="justify" style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:10pt; font-weight:600; color:#000000;"><br /></p> -<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:10pt;">Copyright 2015 Arin Alexander. All rights reserved.</span></p></body></html> +<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:10pt;">Copyright 2021 Arin Alexander. All rights reserved.</span></p></body></html> diff --git a/limereport/lrbanddesignintf.cpp b/limereport/lrbanddesignintf.cpp index 6bd6af8..6308ce1 100644 --- a/limereport/lrbanddesignintf.cpp +++ b/limereport/lrbanddesignintf.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/lrbanddesignintf.h b/limereport/lrbanddesignintf.h index a3f55d6..343f20e 100644 --- a/limereport/lrbanddesignintf.h +++ b/limereport/lrbanddesignintf.h @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/lrbandsmanager.cpp b/limereport/lrbandsmanager.cpp index 25ba344..881aa90 100644 --- a/limereport/lrbandsmanager.cpp +++ b/limereport/lrbandsmanager.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/lrbandsmanager.h b/limereport/lrbandsmanager.h index 0a850c7..be4646b 100644 --- a/limereport/lrbandsmanager.h +++ b/limereport/lrbandsmanager.h @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/lrbasedesignintf.cpp b/limereport/lrbasedesignintf.cpp index 9d25dbf..97660f6 100644 --- a/limereport/lrbasedesignintf.cpp +++ b/limereport/lrbasedesignintf.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/lrbasedesignintf.h b/limereport/lrbasedesignintf.h index 6fac1c2..a61e127 100644 --- a/limereport/lrbasedesignintf.h +++ b/limereport/lrbasedesignintf.h @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/lrcollection.h b/limereport/lrcollection.h index 641ddff..4e3aded 100644 --- a/limereport/lrcollection.h +++ b/limereport/lrcollection.h @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/lrdatadesignintf.cpp b/limereport/lrdatadesignintf.cpp index b16d77d..f970c86 100644 --- a/limereport/lrdatadesignintf.cpp +++ b/limereport/lrdatadesignintf.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/lrdatadesignintf.h b/limereport/lrdatadesignintf.h index c5ac77a..f76de85 100644 --- a/limereport/lrdatadesignintf.h +++ b/limereport/lrdatadesignintf.h @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/lrdatasourcemanager.cpp b/limereport/lrdatasourcemanager.cpp index 382a05c..93827f9 100644 --- a/limereport/lrdatasourcemanager.cpp +++ b/limereport/lrdatasourcemanager.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/lrdatasourcemanager.h b/limereport/lrdatasourcemanager.h index 9c8518f..f870b77 100644 --- a/limereport/lrdatasourcemanager.h +++ b/limereport/lrdatasourcemanager.h @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/lrdatasourcemanagerintf.h b/limereport/lrdatasourcemanagerintf.h index 040dd1d..c43b239 100644 --- a/limereport/lrdatasourcemanagerintf.h +++ b/limereport/lrdatasourcemanagerintf.h @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/lrdesignelementsfactory.h b/limereport/lrdesignelementsfactory.h index 986c354..e28cfac 100644 --- a/limereport/lrdesignelementsfactory.h +++ b/limereport/lrdesignelementsfactory.h @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/lrglobal.cpp b/limereport/lrglobal.cpp index 4d8da61..59e90fc 100644 --- a/limereport/lrglobal.cpp +++ b/limereport/lrglobal.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/lrglobal.h b/limereport/lrglobal.h index 3388fe9..c7a9a2e 100644 --- a/limereport/lrglobal.h +++ b/limereport/lrglobal.h @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/lrgroupfunctions.cpp b/limereport/lrgroupfunctions.cpp index edc516e..15da1ea 100644 --- a/limereport/lrgroupfunctions.cpp +++ b/limereport/lrgroupfunctions.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/lrgroupfunctions.h b/limereport/lrgroupfunctions.h index 0c4acba..ed2ffec 100644 --- a/limereport/lrgroupfunctions.h +++ b/limereport/lrgroupfunctions.h @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/lritemdesignintf.cpp b/limereport/lritemdesignintf.cpp index f90a90d..18e46d2 100644 --- a/limereport/lritemdesignintf.cpp +++ b/limereport/lritemdesignintf.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/lritemdesignintf.h b/limereport/lritemdesignintf.h index 73627c1..482d441 100644 --- a/limereport/lritemdesignintf.h +++ b/limereport/lritemdesignintf.h @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/lrpagedesignintf.cpp b/limereport/lrpagedesignintf.cpp index d9c495d..caaa82a 100644 --- a/limereport/lrpagedesignintf.cpp +++ b/limereport/lrpagedesignintf.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/lrpagedesignintf.h b/limereport/lrpagedesignintf.h index fb7d4ea..4d8fd19 100644 --- a/limereport/lrpagedesignintf.h +++ b/limereport/lrpagedesignintf.h @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/lrpageitemdesignintf.cpp b/limereport/lrpageitemdesignintf.cpp index 850319b..5f6d0d8 100644 --- a/limereport/lrpageitemdesignintf.cpp +++ b/limereport/lrpageitemdesignintf.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/lrpageitemdesignintf.h b/limereport/lrpageitemdesignintf.h index 816bafb..0683cc4 100644 --- a/limereport/lrpageitemdesignintf.h +++ b/limereport/lrpageitemdesignintf.h @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/lrpreviewreportwindow.cpp b/limereport/lrpreviewreportwindow.cpp index 01d42cb..a69e063 100644 --- a/limereport/lrpreviewreportwindow.cpp +++ b/limereport/lrpreviewreportwindow.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/lrpreviewreportwindow.h b/limereport/lrpreviewreportwindow.h index 98808a3..6c3648e 100644 --- a/limereport/lrpreviewreportwindow.h +++ b/limereport/lrpreviewreportwindow.h @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/lrreportdesignwidget.cpp b/limereport/lrreportdesignwidget.cpp index 2cbfcd9..9ec58ad 100644 --- a/limereport/lrreportdesignwidget.cpp +++ b/limereport/lrreportdesignwidget.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/lrreportdesignwidget.h b/limereport/lrreportdesignwidget.h index 21090fb..d95310a 100644 --- a/limereport/lrreportdesignwidget.h +++ b/limereport/lrreportdesignwidget.h @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/lrreportdesignwindow.cpp b/limereport/lrreportdesignwindow.cpp index bdfa031..9052a19 100644 --- a/limereport/lrreportdesignwindow.cpp +++ b/limereport/lrreportdesignwindow.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/lrreportdesignwindow.h b/limereport/lrreportdesignwindow.h index b0ab082..6e3ad3d 100644 --- a/limereport/lrreportdesignwindow.h +++ b/limereport/lrreportdesignwindow.h @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/lrreportengine.cpp b/limereport/lrreportengine.cpp index 62788c2..72d53ad 100644 --- a/limereport/lrreportengine.cpp +++ b/limereport/lrreportengine.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/lrreportengine.h b/limereport/lrreportengine.h index 6509302..4fdfa37 100644 --- a/limereport/lrreportengine.h +++ b/limereport/lrreportengine.h @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/lrreportengine_p.h b/limereport/lrreportengine_p.h index fafe433..b2ef220 100644 --- a/limereport/lrreportengine_p.h +++ b/limereport/lrreportengine_p.h @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/lrreportrender.cpp b/limereport/lrreportrender.cpp index 01e7c87..904d30e 100644 --- a/limereport/lrreportrender.cpp +++ b/limereport/lrreportrender.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/lrreportrender.h b/limereport/lrreportrender.h index 64c85bc..155b7a8 100644 --- a/limereport/lrreportrender.h +++ b/limereport/lrreportrender.h @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/lrscriptenginemanager.cpp b/limereport/lrscriptenginemanager.cpp index 2cb9713..f90da59 100644 --- a/limereport/lrscriptenginemanager.cpp +++ b/limereport/lrscriptenginemanager.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/lrscriptenginemanager.h b/limereport/lrscriptenginemanager.h index ce8e7ef..7c3bccd 100644 --- a/limereport/lrscriptenginemanager.h +++ b/limereport/lrscriptenginemanager.h @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/lrscriptenginemanagerintf.h b/limereport/lrscriptenginemanagerintf.h index a8a7c63..eaad8fd 100644 --- a/limereport/lrscriptenginemanagerintf.h +++ b/limereport/lrscriptenginemanagerintf.h @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/lrsimplecrypt.cpp b/limereport/lrsimplecrypt.cpp index 72e6e87..e5de984 100644 --- a/limereport/lrsimplecrypt.cpp +++ b/limereport/lrsimplecrypt.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/lrsimplecrypt.h b/limereport/lrsimplecrypt.h index 4088726..6ba0b7e 100644 --- a/limereport/lrsimplecrypt.h +++ b/limereport/lrsimplecrypt.h @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/lrvariablesholder.cpp b/limereport/lrvariablesholder.cpp index 4e79084..9cbfcd1 100644 --- a/limereport/lrvariablesholder.cpp +++ b/limereport/lrvariablesholder.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/lrvariablesholder.h b/limereport/lrvariablesholder.h index 76446b5..c9f6ff6 100644 --- a/limereport/lrvariablesholder.h +++ b/limereport/lrvariablesholder.h @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/objectinspector/editors/lrbuttonlineeditor.cpp b/limereport/objectinspector/editors/lrbuttonlineeditor.cpp index 8459594..033861e 100644 --- a/limereport/objectinspector/editors/lrbuttonlineeditor.cpp +++ b/limereport/objectinspector/editors/lrbuttonlineeditor.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/objectinspector/editors/lrbuttonlineeditor.h b/limereport/objectinspector/editors/lrbuttonlineeditor.h index 81d274e..4757d88 100644 --- a/limereport/objectinspector/editors/lrbuttonlineeditor.h +++ b/limereport/objectinspector/editors/lrbuttonlineeditor.h @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/objectinspector/editors/lrcheckboxeditor.cpp b/limereport/objectinspector/editors/lrcheckboxeditor.cpp index 1247ceb..3911540 100644 --- a/limereport/objectinspector/editors/lrcheckboxeditor.cpp +++ b/limereport/objectinspector/editors/lrcheckboxeditor.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/objectinspector/editors/lrcheckboxeditor.h b/limereport/objectinspector/editors/lrcheckboxeditor.h index 67c95bf..8f558cb 100644 --- a/limereport/objectinspector/editors/lrcheckboxeditor.h +++ b/limereport/objectinspector/editors/lrcheckboxeditor.h @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/objectinspector/editors/lrcoloreditor.cpp b/limereport/objectinspector/editors/lrcoloreditor.cpp index 09c22d6..bac93a2 100644 --- a/limereport/objectinspector/editors/lrcoloreditor.cpp +++ b/limereport/objectinspector/editors/lrcoloreditor.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/objectinspector/editors/lrcoloreditor.h b/limereport/objectinspector/editors/lrcoloreditor.h index f77fe81..c8227e9 100644 --- a/limereport/objectinspector/editors/lrcoloreditor.h +++ b/limereport/objectinspector/editors/lrcoloreditor.h @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/objectinspector/editors/lrcomboboxeditor.cpp b/limereport/objectinspector/editors/lrcomboboxeditor.cpp index 3980444..d034c50 100644 --- a/limereport/objectinspector/editors/lrcomboboxeditor.cpp +++ b/limereport/objectinspector/editors/lrcomboboxeditor.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/objectinspector/editors/lrcomboboxeditor.h b/limereport/objectinspector/editors/lrcomboboxeditor.h index b03d619..a752579 100644 --- a/limereport/objectinspector/editors/lrcomboboxeditor.h +++ b/limereport/objectinspector/editors/lrcomboboxeditor.h @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/objectinspector/editors/lrfonteditor.cpp b/limereport/objectinspector/editors/lrfonteditor.cpp index 1f3e97b..55e6230 100644 --- a/limereport/objectinspector/editors/lrfonteditor.cpp +++ b/limereport/objectinspector/editors/lrfonteditor.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/objectinspector/editors/lrfonteditor.h b/limereport/objectinspector/editors/lrfonteditor.h index 256ba2b..d5fa17a 100644 --- a/limereport/objectinspector/editors/lrfonteditor.h +++ b/limereport/objectinspector/editors/lrfonteditor.h @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/objectinspector/editors/lrimageeditor.cpp b/limereport/objectinspector/editors/lrimageeditor.cpp index aae4f99..4066116 100644 --- a/limereport/objectinspector/editors/lrimageeditor.cpp +++ b/limereport/objectinspector/editors/lrimageeditor.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/objectinspector/editors/lrimageeditor.h b/limereport/objectinspector/editors/lrimageeditor.h index 4b116b7..999032b 100644 --- a/limereport/objectinspector/editors/lrimageeditor.h +++ b/limereport/objectinspector/editors/lrimageeditor.h @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/objectinspector/editors/lrtextitempropertyeditor.cpp b/limereport/objectinspector/editors/lrtextitempropertyeditor.cpp index 84192fd..e5a036d 100644 --- a/limereport/objectinspector/editors/lrtextitempropertyeditor.cpp +++ b/limereport/objectinspector/editors/lrtextitempropertyeditor.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/objectinspector/editors/lrtextitempropertyeditor.h b/limereport/objectinspector/editors/lrtextitempropertyeditor.h index 367941b..22e14de 100644 --- a/limereport/objectinspector/editors/lrtextitempropertyeditor.h +++ b/limereport/objectinspector/editors/lrtextitempropertyeditor.h @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/objectinspector/lrbasedesignobjectmodel.cpp b/limereport/objectinspector/lrbasedesignobjectmodel.cpp index 8f22a97..b83904c 100644 --- a/limereport/objectinspector/lrbasedesignobjectmodel.cpp +++ b/limereport/objectinspector/lrbasedesignobjectmodel.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/objectinspector/lrbasedesignobjectmodel.h b/limereport/objectinspector/lrbasedesignobjectmodel.h index 518d3a8..4d50a78 100644 --- a/limereport/objectinspector/lrbasedesignobjectmodel.h +++ b/limereport/objectinspector/lrbasedesignobjectmodel.h @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/objectinspector/lrobjectinspectorwidget.cpp b/limereport/objectinspector/lrobjectinspectorwidget.cpp index 1a3be38..af6bf36 100644 --- a/limereport/objectinspector/lrobjectinspectorwidget.cpp +++ b/limereport/objectinspector/lrobjectinspectorwidget.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/objectinspector/lrobjectinspectorwidget.h b/limereport/objectinspector/lrobjectinspectorwidget.h index fb1d0a6..2244887 100644 --- a/limereport/objectinspector/lrobjectinspectorwidget.h +++ b/limereport/objectinspector/lrobjectinspectorwidget.h @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/objectinspector/lrobjectitemmodel.cpp b/limereport/objectinspector/lrobjectitemmodel.cpp index 65e2f4a..6b5ca7d 100644 --- a/limereport/objectinspector/lrobjectitemmodel.cpp +++ b/limereport/objectinspector/lrobjectitemmodel.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/objectinspector/lrobjectitemmodel.h b/limereport/objectinspector/lrobjectitemmodel.h index 2aa1f8b..2beb0dd 100644 --- a/limereport/objectinspector/lrobjectitemmodel.h +++ b/limereport/objectinspector/lrobjectitemmodel.h @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/objectinspector/lrobjectpropitem.cpp b/limereport/objectinspector/lrobjectpropitem.cpp index 6ef6613..f827c46 100644 --- a/limereport/objectinspector/lrobjectpropitem.cpp +++ b/limereport/objectinspector/lrobjectpropitem.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/objectinspector/lrobjectpropitem.h b/limereport/objectinspector/lrobjectpropitem.h index f765213..d557cd7 100644 --- a/limereport/objectinspector/lrobjectpropitem.h +++ b/limereport/objectinspector/lrobjectpropitem.h @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/objectinspector/lrpropertydelegate.cpp b/limereport/objectinspector/lrpropertydelegate.cpp index 3a67cdc..cb5fa39 100644 --- a/limereport/objectinspector/lrpropertydelegate.cpp +++ b/limereport/objectinspector/lrpropertydelegate.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/objectinspector/lrpropertydelegate.h b/limereport/objectinspector/lrpropertydelegate.h index b64cdae..f21c692 100644 --- a/limereport/objectinspector/lrpropertydelegate.h +++ b/limereport/objectinspector/lrpropertydelegate.h @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/objectinspector/propertyItems/lrboolpropitem.cpp b/limereport/objectinspector/propertyItems/lrboolpropitem.cpp index 6e462a2..0529453 100644 --- a/limereport/objectinspector/propertyItems/lrboolpropitem.cpp +++ b/limereport/objectinspector/propertyItems/lrboolpropitem.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/objectinspector/propertyItems/lrboolpropitem.h b/limereport/objectinspector/propertyItems/lrboolpropitem.h index 9331c3d..fec0c83 100644 --- a/limereport/objectinspector/propertyItems/lrboolpropitem.h +++ b/limereport/objectinspector/propertyItems/lrboolpropitem.h @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/objectinspector/propertyItems/lrcolorpropitem.cpp b/limereport/objectinspector/propertyItems/lrcolorpropitem.cpp index a47f77c..96e9e5b 100644 --- a/limereport/objectinspector/propertyItems/lrcolorpropitem.cpp +++ b/limereport/objectinspector/propertyItems/lrcolorpropitem.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/objectinspector/propertyItems/lrcolorpropitem.h b/limereport/objectinspector/propertyItems/lrcolorpropitem.h index 6d0b8de..b30f697 100644 --- a/limereport/objectinspector/propertyItems/lrcolorpropitem.h +++ b/limereport/objectinspector/propertyItems/lrcolorpropitem.h @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/objectinspector/propertyItems/lrdatasourcepropitem.cpp b/limereport/objectinspector/propertyItems/lrdatasourcepropitem.cpp index 6a3f1b6..15da9fb 100644 --- a/limereport/objectinspector/propertyItems/lrdatasourcepropitem.cpp +++ b/limereport/objectinspector/propertyItems/lrdatasourcepropitem.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/objectinspector/propertyItems/lrdatasourcepropitem.h b/limereport/objectinspector/propertyItems/lrdatasourcepropitem.h index 60f7062..7149325 100644 --- a/limereport/objectinspector/propertyItems/lrdatasourcepropitem.h +++ b/limereport/objectinspector/propertyItems/lrdatasourcepropitem.h @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/objectinspector/propertyItems/lrenumpropitem.cpp b/limereport/objectinspector/propertyItems/lrenumpropitem.cpp index 385b2d6..b9a1a0c 100644 --- a/limereport/objectinspector/propertyItems/lrenumpropitem.cpp +++ b/limereport/objectinspector/propertyItems/lrenumpropitem.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/objectinspector/propertyItems/lrenumpropitem.h b/limereport/objectinspector/propertyItems/lrenumpropitem.h index 4553d10..b610e20 100644 --- a/limereport/objectinspector/propertyItems/lrenumpropitem.h +++ b/limereport/objectinspector/propertyItems/lrenumpropitem.h @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/objectinspector/propertyItems/lrflagspropitem.cpp b/limereport/objectinspector/propertyItems/lrflagspropitem.cpp index 91d142e..d932144 100644 --- a/limereport/objectinspector/propertyItems/lrflagspropitem.cpp +++ b/limereport/objectinspector/propertyItems/lrflagspropitem.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/objectinspector/propertyItems/lrflagspropitem.h b/limereport/objectinspector/propertyItems/lrflagspropitem.h index 1005a8b..dae5e96 100644 --- a/limereport/objectinspector/propertyItems/lrflagspropitem.h +++ b/limereport/objectinspector/propertyItems/lrflagspropitem.h @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/objectinspector/propertyItems/lrfontpropitem.cpp b/limereport/objectinspector/propertyItems/lrfontpropitem.cpp index 3e14fea..58f26fe 100644 --- a/limereport/objectinspector/propertyItems/lrfontpropitem.cpp +++ b/limereport/objectinspector/propertyItems/lrfontpropitem.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/objectinspector/propertyItems/lrfontpropitem.h b/limereport/objectinspector/propertyItems/lrfontpropitem.h index a5a3cfd..654ba8a 100644 --- a/limereport/objectinspector/propertyItems/lrfontpropitem.h +++ b/limereport/objectinspector/propertyItems/lrfontpropitem.h @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/objectinspector/propertyItems/lrgroupfieldpropitem.cpp b/limereport/objectinspector/propertyItems/lrgroupfieldpropitem.cpp index 890f833..86dda68 100644 --- a/limereport/objectinspector/propertyItems/lrgroupfieldpropitem.cpp +++ b/limereport/objectinspector/propertyItems/lrgroupfieldpropitem.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/objectinspector/propertyItems/lrgroupfieldpropitem.h b/limereport/objectinspector/propertyItems/lrgroupfieldpropitem.h index 3f72fff..e51f297 100644 --- a/limereport/objectinspector/propertyItems/lrgroupfieldpropitem.h +++ b/limereport/objectinspector/propertyItems/lrgroupfieldpropitem.h @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/objectinspector/propertyItems/lrimagepropitem.cpp b/limereport/objectinspector/propertyItems/lrimagepropitem.cpp index e44797d..31c37fd 100644 --- a/limereport/objectinspector/propertyItems/lrimagepropitem.cpp +++ b/limereport/objectinspector/propertyItems/lrimagepropitem.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/objectinspector/propertyItems/lrimagepropitem.h b/limereport/objectinspector/propertyItems/lrimagepropitem.h index e61c9b9..ab97f05 100644 --- a/limereport/objectinspector/propertyItems/lrimagepropitem.h +++ b/limereport/objectinspector/propertyItems/lrimagepropitem.h @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/objectinspector/propertyItems/lrintpropitem.cpp b/limereport/objectinspector/propertyItems/lrintpropitem.cpp index 4f6f374..172c40e 100644 --- a/limereport/objectinspector/propertyItems/lrintpropitem.cpp +++ b/limereport/objectinspector/propertyItems/lrintpropitem.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/objectinspector/propertyItems/lrintpropitem.h b/limereport/objectinspector/propertyItems/lrintpropitem.h index 2d49f21..d9a2fbb 100644 --- a/limereport/objectinspector/propertyItems/lrintpropitem.h +++ b/limereport/objectinspector/propertyItems/lrintpropitem.h @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/objectinspector/propertyItems/lrqrealpropitem.cpp b/limereport/objectinspector/propertyItems/lrqrealpropitem.cpp index 2d27868..5e4dd66 100644 --- a/limereport/objectinspector/propertyItems/lrqrealpropitem.cpp +++ b/limereport/objectinspector/propertyItems/lrqrealpropitem.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/objectinspector/propertyItems/lrqrealpropitem.h b/limereport/objectinspector/propertyItems/lrqrealpropitem.h index c8a2616..1767395 100644 --- a/limereport/objectinspector/propertyItems/lrqrealpropitem.h +++ b/limereport/objectinspector/propertyItems/lrqrealpropitem.h @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/objectinspector/propertyItems/lrrectproptem.cpp b/limereport/objectinspector/propertyItems/lrrectproptem.cpp index a364c5f..20c2b56 100644 --- a/limereport/objectinspector/propertyItems/lrrectproptem.cpp +++ b/limereport/objectinspector/propertyItems/lrrectproptem.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/objectinspector/propertyItems/lrrectproptem.h b/limereport/objectinspector/propertyItems/lrrectproptem.h index bd6915c..c7ce569 100644 --- a/limereport/objectinspector/propertyItems/lrrectproptem.h +++ b/limereport/objectinspector/propertyItems/lrrectproptem.h @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/objectinspector/propertyItems/lrstringpropitem.cpp b/limereport/objectinspector/propertyItems/lrstringpropitem.cpp index b742c55..b594d35 100644 --- a/limereport/objectinspector/propertyItems/lrstringpropitem.cpp +++ b/limereport/objectinspector/propertyItems/lrstringpropitem.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/objectinspector/propertyItems/lrstringpropitem.h b/limereport/objectinspector/propertyItems/lrstringpropitem.h index 091ef1c..60bc722 100644 --- a/limereport/objectinspector/propertyItems/lrstringpropitem.h +++ b/limereport/objectinspector/propertyItems/lrstringpropitem.h @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/objectsbrowser/lrobjectbrowser.cpp b/limereport/objectsbrowser/lrobjectbrowser.cpp index a86fac3..a3db497 100644 --- a/limereport/objectsbrowser/lrobjectbrowser.cpp +++ b/limereport/objectsbrowser/lrobjectbrowser.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/objectsbrowser/lrobjectbrowser.h b/limereport/objectsbrowser/lrobjectbrowser.h index 3616c41..8008e1c 100644 --- a/limereport/objectsbrowser/lrobjectbrowser.h +++ b/limereport/objectsbrowser/lrobjectbrowser.h @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/scriptbrowser/lrscriptbrowser.cpp b/limereport/scriptbrowser/lrscriptbrowser.cpp index 4407170..052b6ce 100644 --- a/limereport/scriptbrowser/lrscriptbrowser.cpp +++ b/limereport/scriptbrowser/lrscriptbrowser.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/scriptbrowser/lrscriptbrowser.h b/limereport/scriptbrowser/lrscriptbrowser.h index a004eef..5ac96da 100644 --- a/limereport/scriptbrowser/lrscriptbrowser.h +++ b/limereport/scriptbrowser/lrscriptbrowser.h @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/serializators/lrserializatorintf.h b/limereport/serializators/lrserializatorintf.h index b16263a..452922e 100644 --- a/limereport/serializators/lrserializatorintf.h +++ b/limereport/serializators/lrserializatorintf.h @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/serializators/lrstorageintf.h b/limereport/serializators/lrstorageintf.h index 74b83ef..e0ec406 100644 --- a/limereport/serializators/lrstorageintf.h +++ b/limereport/serializators/lrstorageintf.h @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/serializators/lrxmlbasetypesserializators.cpp b/limereport/serializators/lrxmlbasetypesserializators.cpp index 559bee9..d9a1f1c 100644 --- a/limereport/serializators/lrxmlbasetypesserializators.cpp +++ b/limereport/serializators/lrxmlbasetypesserializators.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/serializators/lrxmlbasetypesserializators.h b/limereport/serializators/lrxmlbasetypesserializators.h index 56f62c1..8662503 100644 --- a/limereport/serializators/lrxmlbasetypesserializators.h +++ b/limereport/serializators/lrxmlbasetypesserializators.h @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/serializators/lrxmlqrectserializator.cpp b/limereport/serializators/lrxmlqrectserializator.cpp index 8b5ff09..3ef2a39 100644 --- a/limereport/serializators/lrxmlqrectserializator.cpp +++ b/limereport/serializators/lrxmlqrectserializator.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/serializators/lrxmlqrectserializator.h b/limereport/serializators/lrxmlqrectserializator.h index cc26275..b41dc93 100644 --- a/limereport/serializators/lrxmlqrectserializator.h +++ b/limereport/serializators/lrxmlqrectserializator.h @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/serializators/lrxmlreader.cpp b/limereport/serializators/lrxmlreader.cpp index 7439fc4..3925128 100644 --- a/limereport/serializators/lrxmlreader.cpp +++ b/limereport/serializators/lrxmlreader.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/serializators/lrxmlreader.h b/limereport/serializators/lrxmlreader.h index 3dbbc5c..dd92d7d 100644 --- a/limereport/serializators/lrxmlreader.h +++ b/limereport/serializators/lrxmlreader.h @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/serializators/lrxmlserializatorsfactory.h b/limereport/serializators/lrxmlserializatorsfactory.h index 5d76e06..1f3d695 100644 --- a/limereport/serializators/lrxmlserializatorsfactory.h +++ b/limereport/serializators/lrxmlserializatorsfactory.h @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/serializators/lrxmlwriter.cpp b/limereport/serializators/lrxmlwriter.cpp index af353f5..7da6046 100644 --- a/limereport/serializators/lrxmlwriter.cpp +++ b/limereport/serializators/lrxmlwriter.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage ** diff --git a/limereport/serializators/lrxmlwriter.h b/limereport/serializators/lrxmlwriter.h index 05d47a7..cbd4d4b 100644 --- a/limereport/serializators/lrxmlwriter.h +++ b/limereport/serializators/lrxmlwriter.h @@ -1,6 +1,6 @@ /*************************************************************************** * This file is part of the Lime Report project * - * Copyright (C) 2015 by Alexander Arin * + * Copyright (C) 2021 by Alexander Arin * * arin_a@bk.ru * * * ** GNU General Public License Usage **