author | harlekin <harlekin> | 2004-05-29 17:11:23 (UTC) |
---|---|---|
committer | harlekin <harlekin> | 2004-05-29 17:11:23 (UTC) |
commit | f568ff9c68bdc61cbc4482f9b2c6e1096cecaae0 (patch) (side-by-side diff) | |
tree | 656b1216596c578ba672c2c0d25782d24110406a | |
parent | e163b479be800d0b388cf52d046adfc83f5cc1d8 (diff) | |
download | opie-f568ff9c68bdc61cbc4482f9b2c6e1096cecaae0.zip opie-f568ff9c68bdc61cbc4482f9b2c6e1096cecaae0.tar.gz opie-f568ff9c68bdc61cbc4482f9b2c6e1096cecaae0.tar.bz2 |
fix path handling
-rw-r--r-- | libopie2/opiecore/opluginloader.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libopie2/opiecore/opluginloader.cpp b/libopie2/opiecore/opluginloader.cpp index c2dc239..3d286e5 100644 --- a/libopie2/opiecore/opluginloader.cpp +++ b/libopie2/opiecore/opluginloader.cpp @@ -219,13 +219,13 @@ void OPluginItem::setName( const QString& name ) { /** * \brief set the path of a plugin * Set the path of Plugin Item. The path must be absolute. * @param name The path of the plugin */ void OPluginItem::setPath( const QString& name ) { - m_name = name; + m_path = name; } /** * \brief enable or disable the to load attribute * Set the Enabled attribute. Such changes won't be saved. If you want to save it * use a OPluginManager to configure your plugins manually or Opie::Ui::OPluginConfig @@ -820,13 +820,13 @@ void OPluginManager::save() { /* * We will create some maps for the groups to include positions a */ for ( OPluginItem::List::Iterator it = m_plugins.begin(); it != m_plugins.end(); ++it ) { OPluginItem item = *it; - QString path = QFileInfo( item.path() ).filePath(); + QString path = QFileInfo( item.path() ).dirPath(true); if ( sorted ) { positions[path].append( item.name() ); positions[path].append( QString::number( item.position() ) ); } if ( !item.isEnabled() ) |