Changeset 5410 in ntrip for trunk/GnssCenter/main
- Timestamp:
- Sep 10, 2013, 3:39:33 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GnssCenter/main/mainwin.cpp
r5118 r5410 43 43 44 44 foreach (QString fileName, pluginsDir.entryList(QDir::Files)) { 45 qDebug() << pluginsDir.absoluteFilePath(fileName); 45 46 QPluginLoader loader(pluginsDir.absoluteFilePath(fileName)); 47 qDebug() << loader.errorString(); 46 48 QObject* object = loader.instance(); 49 qDebug() << object; 50 qDebug() << loader.errorString(); 47 51 if (object) { 48 52 t_pluginFactoryInterface* plugin = qobject_cast<t_pluginFactoryInterface*>(object);
Note:
See TracChangeset
for help on using the changeset viewer.