get rid of the convenience method; not used

This commit is contained in:
Aaron Seigo 2011-07-08 20:08:06 +02:00
parent 755a1f2ba6
commit b4dbbbb7d0
2 changed files with 0 additions and 16 deletions

View File

@ -123,12 +123,6 @@ Package::Package()
{
}
Package::Package(const QString &packageRoot, const QString &package,
PackageStructure::Ptr structure)
: d(new PackagePrivate(structure, packageRoot + '/' + package))
{
}
Package::Package(const QString &packagePath, PackageStructure::Ptr structure)
: d(new PackagePrivate(structure, packagePath))
{

View File

@ -47,16 +47,6 @@ class PLASMA_EXPORT Package
*/
explicit Package();
/**
* Construct a Package object
*
* @arg packageRoot path to the package installation root
* @arg package the name of the package
* @arg structure the package structure describing this package
**/
Package(const QString &packageRoot, const QString &package,
PackageStructure::Ptr structure);
/**
* Construct a Package object.
*