mirror of
https://github.com/python-LimeReport/LimeReport.git
synced 2024-12-23 20:22:58 +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)
|
||||
|
||||
|
||||
SUBDIRS += limereport
|
||||
|
||||
CONFIG += ordered
|
||||
CONFIG += ordered
|
||||
|
||||
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_fileWatcher,SIGNAL(fileChanged(const QString &)),this,SLOT(slotLoadFromFile(const QString &)));
|
||||
|
||||
#ifndef HAVE_REPORT_DESIGNER
|
||||
QDir pluginsDir = QCoreApplication::applicationDirPath();
|
||||
pluginsDir.cd("../lib" );
|
||||
if (!pluginsDir.exists()){
|
||||
@ -99,8 +100,6 @@ ReportEnginePrivate::ReportEnginePrivate(QObject *parent) :
|
||||
if (!pluginsDir.exists()) pluginsDir.setPath(QCoreApplication::applicationDirPath());
|
||||
}
|
||||
|
||||
qDebug()<<pluginsDir.path();
|
||||
|
||||
foreach( const QString& pluginName, pluginsDir.entryList( QDir::Files ) ) {
|
||||
QPluginLoader loader( pluginsDir.absoluteFilePath( pluginName ) );
|
||||
if( loader.load() ) {
|
||||
@ -110,7 +109,7 @@ ReportEnginePrivate::ReportEnginePrivate(QObject *parent) :
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#endif
|
||||
}
|
||||
|
||||
ReportEnginePrivate::~ReportEnginePrivate()
|
||||
|
Loading…
Reference in New Issue
Block a user