summaryrefslogtreecommitdiffstats
path: root/kpovmodeler/pmlibraryhandle.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kpovmodeler/pmlibraryhandle.cpp')
-rw-r--r--kpovmodeler/pmlibraryhandle.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/kpovmodeler/pmlibraryhandle.cpp b/kpovmodeler/pmlibraryhandle.cpp
index e22a37f2..36ed2d2a 100644
--- a/kpovmodeler/pmlibraryhandle.cpp
+++ b/kpovmodeler/pmlibraryhandle.cpp
@@ -353,12 +353,12 @@ PMLibraryHandle::PMResult PMLibraryHandle::deleteSubLibrary( const TQString& sub
return PMLibraryHandle::NotInLib;
}
-PMLibraryHandle::PMResult PMLibraryHandle::changeParentLibrary( const TQString& tqparentPath )
+PMLibraryHandle::PMResult PMLibraryHandle::changeParentLibrary( const TQString& parentPath )
{
if( m_readOnly )
return PMLibraryHandle::ReadOnlyLib;
- TQString newPath = tqparentPath + "/" + m_path.section( '/', -1 );
+ TQString newPath = parentPath + "/" + m_path.section( '/', -1 );
PMLibraryHandle::EntryIterator itr( m_libraries );
for( ; itr.current( ); ++itr )
{