mirror of
https://github.com/python-LimeReport/LimeReport.git
synced 2024-12-23 20:22:58 +03:00
build has been fixed
This commit is contained in:
parent
a865e92a23
commit
b6839a509a
@ -104,7 +104,7 @@ namespace Const{
|
|||||||
QString extractClassName(QString className);
|
QString extractClassName(QString className);
|
||||||
QString escapeSimbols(const QString& value);
|
QString escapeSimbols(const QString& value);
|
||||||
QString replaceHTMLSymbols(const QString &value);
|
QString replaceHTMLSymbols(const QString &value);
|
||||||
#if QT_VERSION >= QT_VERSION_CHECK(5, 12, 3)
|
#if QT_VERSION >= QT_VERSION_CHECK(5, 15, 1)
|
||||||
QVector<QString> normalizeCaptures(const QRegularExpressionMatch ®);
|
QVector<QString> normalizeCaptures(const QRegularExpressionMatch ®);
|
||||||
#else
|
#else
|
||||||
QVector<QString> normalizeCaptures(const QRegExp ®);
|
QVector<QString> normalizeCaptures(const QRegExp ®);
|
||||||
|
@ -63,7 +63,7 @@ BaseDesignIntf *ImageItem::createSameTypeItem(QObject *owner, QGraphicsItem *par
|
|||||||
void ImageItem::loadPictureFromVariant(QVariant& data){
|
void ImageItem::loadPictureFromVariant(QVariant& data){
|
||||||
//TODO: Migrate to QMetaType
|
//TODO: Migrate to QMetaType
|
||||||
if (data.isValid()){
|
if (data.isValid()){
|
||||||
#if QT_VERSION >= QT_VERSION_CHECK(5, 0, 0)
|
#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
|
||||||
if (data.typeId() == QMetaType::QImage){
|
if (data.typeId() == QMetaType::QImage){
|
||||||
#else
|
#else
|
||||||
if (data.type() == QVariant::Image){
|
if (data.type() == QVariant::Image){
|
||||||
@ -185,14 +185,14 @@ void ImageItem::updateItemSize(DataSourceManager* dataManager, RenderPass pass,
|
|||||||
} else if (!m_variable.isEmpty()){
|
} else if (!m_variable.isEmpty()){
|
||||||
//TODO: Migrate to QMetaType
|
//TODO: Migrate to QMetaType
|
||||||
QVariant data = dataManager->variable(m_variable);
|
QVariant data = dataManager->variable(m_variable);
|
||||||
#if QT_VERSION >= QT_VERSION_CHECK(5, 0, 0)
|
#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
|
||||||
if (data.typeId() == QMetaType::QString){
|
if (data.typeId() == QMetaType::QString){
|
||||||
#else
|
#else
|
||||||
if (data.type() == QVariant::String){
|
if (data.type() == QVariant::String){
|
||||||
#endif
|
#endif
|
||||||
m_picture = QImage(data.toString());
|
m_picture = QImage(data.toString());
|
||||||
} else {
|
} else {
|
||||||
#if QT_VERSION >= QT_VERSION_CHECK(5, 0, 0)
|
#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
|
||||||
if (data.typeId() == QMetaType::QImage){
|
if (data.typeId() == QMetaType::QImage){
|
||||||
#else
|
#else
|
||||||
if (data.type() == QVariant::Image){
|
if (data.type() == QVariant::Image){
|
||||||
|
@ -104,7 +104,7 @@ namespace Const{
|
|||||||
QString extractClassName(QString className);
|
QString extractClassName(QString className);
|
||||||
QString escapeSimbols(const QString& value);
|
QString escapeSimbols(const QString& value);
|
||||||
QString replaceHTMLSymbols(const QString &value);
|
QString replaceHTMLSymbols(const QString &value);
|
||||||
#if QT_VERSION >= QT_VERSION_CHECK(5, 12, 3)
|
#if QT_VERSION >= QT_VERSION_CHECK(5, 15, 1)
|
||||||
QVector<QString> normalizeCaptures(const QRegularExpressionMatch ®);
|
QVector<QString> normalizeCaptures(const QRegularExpressionMatch ®);
|
||||||
#else
|
#else
|
||||||
QVector<QString> normalizeCaptures(const QRegExp ®);
|
QVector<QString> normalizeCaptures(const QRegExp ®);
|
||||||
|
@ -4,6 +4,7 @@
|
|||||||
#include <QWidget>
|
#include <QWidget>
|
||||||
#include <QLocale>
|
#include <QLocale>
|
||||||
#include <QTreeWidgetItem>
|
#include <QTreeWidgetItem>
|
||||||
|
#include <QShortcut>
|
||||||
#include "lrreporttranslation.h"
|
#include "lrreporttranslation.h"
|
||||||
|
|
||||||
namespace LimeReport {
|
namespace LimeReport {
|
||||||
|
Loading…
Reference in New Issue
Block a user