redundant debug message has been deleted

This commit is contained in:
Arin Alexander 2017-12-07 21:30:32 +03:00
parent b6ea14747f
commit 88422aedbb
2 changed files with 4 additions and 4 deletions

View File

@ -11,9 +11,10 @@ contains(CONFIG, zint){
export($$CONFIG)
SUBDIRS += limereport
CONFIG += ordered
CONFIG += ordered
SUBDIRS += demo_r1 demo_r2 designer

View File

@ -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()