mirror of
https://github.com/python-LimeReport/LimeReport.git
synced 2024-12-24 12:34:39 +03:00
redundant debug message has been deleted
This commit is contained in:
parent
b6ea14747f
commit
88422aedbb
@ -11,9 +11,10 @@ contains(CONFIG, zint){
|
|||||||
|
|
||||||
export($$CONFIG)
|
export($$CONFIG)
|
||||||
|
|
||||||
|
|
||||||
SUBDIRS += limereport
|
SUBDIRS += limereport
|
||||||
|
|
||||||
CONFIG += ordered
|
CONFIG += ordered
|
||||||
|
|
||||||
SUBDIRS += demo_r1 demo_r2 designer
|
SUBDIRS += demo_r1 demo_r2 designer
|
||||||
|
|
||||||
|
@ -92,6 +92,7 @@ ReportEnginePrivate::ReportEnginePrivate(QObject *parent) :
|
|||||||
connect(m_datasources,SIGNAL(loadCollectionFinished(QString)),this,SLOT(slotDataSourceCollectionLoaded(QString)));
|
connect(m_datasources,SIGNAL(loadCollectionFinished(QString)),this,SLOT(slotDataSourceCollectionLoaded(QString)));
|
||||||
connect(m_fileWatcher,SIGNAL(fileChanged(const QString &)),this,SLOT(slotLoadFromFile(const QString &)));
|
connect(m_fileWatcher,SIGNAL(fileChanged(const QString &)),this,SLOT(slotLoadFromFile(const QString &)));
|
||||||
|
|
||||||
|
#ifndef HAVE_REPORT_DESIGNER
|
||||||
QDir pluginsDir = QCoreApplication::applicationDirPath();
|
QDir pluginsDir = QCoreApplication::applicationDirPath();
|
||||||
pluginsDir.cd("../lib" );
|
pluginsDir.cd("../lib" );
|
||||||
if (!pluginsDir.exists()){
|
if (!pluginsDir.exists()){
|
||||||
@ -99,8 +100,6 @@ ReportEnginePrivate::ReportEnginePrivate(QObject *parent) :
|
|||||||
if (!pluginsDir.exists()) pluginsDir.setPath(QCoreApplication::applicationDirPath());
|
if (!pluginsDir.exists()) pluginsDir.setPath(QCoreApplication::applicationDirPath());
|
||||||
}
|
}
|
||||||
|
|
||||||
qDebug()<<pluginsDir.path();
|
|
||||||
|
|
||||||
foreach( const QString& pluginName, pluginsDir.entryList( QDir::Files ) ) {
|
foreach( const QString& pluginName, pluginsDir.entryList( QDir::Files ) ) {
|
||||||
QPluginLoader loader( pluginsDir.absoluteFilePath( pluginName ) );
|
QPluginLoader loader( pluginsDir.absoluteFilePath( pluginName ) );
|
||||||
if( loader.load() ) {
|
if( loader.load() ) {
|
||||||
@ -110,7 +109,7 @@ ReportEnginePrivate::ReportEnginePrivate(QObject *parent) :
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
ReportEnginePrivate::~ReportEnginePrivate()
|
ReportEnginePrivate::~ReportEnginePrivate()
|
||||||
|
Loading…
Reference in New Issue
Block a user