0
0
mirror of https://github.com/fralx/LimeReport.git synced 2025-09-23 08:29:07 +03:00

QZint has been fixed

This commit is contained in:
Arin Alex
2017-09-08 06:30:38 +03:00
parent b6d03ab71c
commit 280b90dd0e
5 changed files with 44 additions and 16 deletions

View File

@@ -22,8 +22,6 @@ unix{
CONFIG += plugin
}
#VERSION = 2.4.4
INCLUDEPATH += $$PWD/../backend
DEFINES += _CRT_SECURE_NO_WARNINGS _CRT_NONSTDC_NO_WARNINGS ZINT_VERSION=\\\"$$VERSION\\\"
contains(CONFIG,release) {

View File

@@ -19,12 +19,13 @@
#include <QColor>
#include <QPainter>
#include "qzint_global.h"
#include "zint.h"
namespace Zint
{
class QZint
class QZINTSHARED_EXPORT QZint
{
private:
@@ -120,9 +121,9 @@ private:
float m_scale;
int m_option_3;
bool m_hidetext;
float m_dot_size;
int target_size_horiz;
int target_size_vert;
float m_dot_size;
int target_size_horiz;
int target_size_vert;
};
}
#endif

View File

@@ -0,0 +1,12 @@
#ifndef QZINT_GLOBAL_H
#define QZINT_GLOBAL_H
#include <QtCore/qglobal.h>
#if defined(QZINT_LIBRARY)
# define QZINTSHARED_EXPORT Q_DECL_EXPORT
#else
# define QZINTSHARED_EXPORT Q_DECL_IMPORT
#endif
#endif // QZINT_GLOBAL_H