Making master Dnk happy.
This commit is contained in:
parent
470896d85a
commit
625dc4cc3e
4 changed files with 9 additions and 9 deletions
|
@ -55,7 +55,7 @@ public:
|
|||
virtual void setPluginPaths(const QStringList &paths) = 0;
|
||||
virtual QList<ExtensionSystem::IPluginSpec *> plugins() const = 0;
|
||||
|
||||
virtual bool loadPlugin( const char *plugin ) = 0;
|
||||
virtual bool loadPlugin( const QString &plugin ) = 0;
|
||||
virtual bool unloadPlugin( ExtensionSystem::IPluginSpec *plugin ) = 0;
|
||||
|
||||
// Settings
|
||||
|
|
|
@ -114,15 +114,15 @@ void PluginManager::loadPlugins()
|
|||
Q_EMIT pluginsChanged();
|
||||
}
|
||||
|
||||
bool PluginManager::loadPluginSpec( const char *plugin )
|
||||
bool PluginManager::loadPluginSpec( const QString &plugin )
|
||||
{
|
||||
nlinfo( "Loading plugin spec %s", plugin );
|
||||
nlinfo( "Loading plugin spec %s", plugin.toUtf8().data() );
|
||||
|
||||
PluginSpec *spec = new PluginSpec;
|
||||
spec->m_pluginManager = this;
|
||||
if( !spec->setSpecFileName( plugin ) )
|
||||
{
|
||||
nlinfo( "Error loading plugin spec %s", plugin );
|
||||
nlinfo( "Error loading plugin spec %s", plugin.toUtf8().data() );
|
||||
return false;
|
||||
}
|
||||
|
||||
|
@ -132,7 +132,7 @@ bool PluginManager::loadPluginSpec( const char *plugin )
|
|||
return true;
|
||||
}
|
||||
|
||||
bool PluginManager::loadPlugin( const char *plugin )
|
||||
bool PluginManager::loadPlugin( const QString &plugin )
|
||||
{
|
||||
if( !loadPluginSpec( plugin ) )
|
||||
return false;
|
||||
|
@ -141,7 +141,7 @@ bool PluginManager::loadPlugin( const char *plugin )
|
|||
|
||||
if( !spec->resolveDependencies( m_pluginSpecs ) )
|
||||
{
|
||||
nlinfo( "Error resolving dependencies for plugin spec %s", plugin );
|
||||
nlinfo( "Error resolving dependencies for plugin spec %s", plugin.toUtf8().data() );
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
|
@ -51,8 +51,8 @@ public:
|
|||
virtual QList<IPluginSpec *> plugins() const;
|
||||
QList<PluginSpec *> loadQueue();
|
||||
|
||||
bool loadPluginSpec( const char *plugin );
|
||||
bool loadPlugin( const char *plugin );
|
||||
bool loadPluginSpec( const QString &plugin );
|
||||
bool loadPlugin( const QString &plugin );
|
||||
bool unloadPlugin( ExtensionSystem::IPluginSpec *plugin );
|
||||
void removePlugin( ExtensionSystem::IPluginSpec *plugin );
|
||||
|
||||
|
|
|
@ -156,7 +156,7 @@ void PluginView::onLoadClicked()
|
|||
}
|
||||
|
||||
QApplication::setOverrideCursor( Qt::WaitCursor );
|
||||
bool success = m_pluginManager->loadPlugin( f.toAscii().data() );
|
||||
bool success = m_pluginManager->loadPlugin( f );
|
||||
QApplication::setOverrideCursor( Qt::ArrowCursor );
|
||||
|
||||
if( !success )
|
||||
|
|
Loading…
Reference in a new issue